We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b24a6f commit 82e7d9dCopy full SHA for 82e7d9d
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,11 @@
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: { python-version: '3.11' }
10
+ - run: pip install -r requirements.txt
11
+ - run: pytest
0 commit comments