We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 074d1f0 commit cb6c756Copy full SHA for cb6c756
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ os: [ubuntu-latest, windows-latest]
13
+ python-version: ["3.12", "3.13", "3.14"]
14
+ runs-on: ${{ matrix.os }}
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: ${{ matrix.python-version }}
22
23
+ - name: Install dependencies
24
+ shell: bash
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ pip install -r requirements.txt
28
29
+ - name: Run tests (repo-local config)
30
31
32
+ python -m pytest -c pytest.ini
0 commit comments