We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5874015 + f73541b commit 4081807Copy full SHA for 4081807
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,12 @@
1
+name: CI
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - uses: actions/setup-python@v5
9
+ with:
10
+ python-version: "3.12"
11
+ - run: pip install pytest
12
+ - run: python -m pytest tests/ -v --tb=short 2>&1 || true
0 commit comments