Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
Add GitHub Action to run test script
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed May 8, 2024
1 parent ace515a commit 965ad22
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on: push

jobs:
pytest:
runs-on: ubuntu-latest

steps:
- name: Checkout main branch
uses: actions/checkout@v4

- name: Checkout gh-pages branch
uses: actions/checkout@v4
with:
ref: "gh-pages"
path: "data"

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"

- name: Test
run: |
python3 test.py data/

0 comments on commit 965ad22

Please sign in to comment.