We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b47e6 commit 15e23c4Copy full SHA for 15e23c4
.github/workflows/ci.yaml
@@ -0,0 +1,29 @@
1
+name: Python Package CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build-and-test:
7
+ runs-on: ubuntu-latest
8
9
+ strategy:
10
+ matrix:
11
+ python-version: [3.12]
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: |
22
+ pip install poetry
23
+ poetry install
24
+ - name: Check for syntax errors
25
26
+ python -m compileall .
27
+ - name: Run tests
28
29
+ PYTHONPATH=src poetry run pytest
0 commit comments