Skip to content

Commit

Permalink
feat: CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaquiery committed Nov 11, 2024
1 parent 3ecf835 commit 07cc847
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install self
run: pip install -e .
- name: Run tests
run: |
cd tests
python -m unittest discover

0 comments on commit 07cc847

Please sign in to comment.