We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da7895b commit 2aabd4eCopy full SHA for 2aabd4e
.github/workflows/ci.yml
@@ -24,14 +24,17 @@ jobs:
24
25
test:
26
runs-on: ubuntu-latest
27
+ strategy:
28
+ matrix:
29
+ python-version: ["3.11", "3.12", "3.13", "3.14"]
30
steps:
31
- uses: actions/checkout@v4
32
33
- uses: astral-sh/setup-uv@v4
34
with:
35
version: "latest"
36
- - run: uv sync
37
+ - run: uv sync --python ${{ matrix.python-version }}
38
39
- name: Run unit tests
40
run: uv run pytest -m "not integration" -v
0 commit comments