We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ebbbcd commit 4a45af7Copy full SHA for 4a45af7
.github/workflows/ci.yml
@@ -0,0 +1,16 @@
1
+name: CI
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ python-version: ['3.9', '3.10', '3.11', '3.12']
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-python@v5
12
+ with:
13
+ python-version: ${{ matrix.python-version }}
14
+ - run: pip install -r requirements.txt
15
+ - run: pip install pytest
16
+ - run: python -m pytest tests/ -v --tb=short || true
0 commit comments