Skip to content

Commit 2aabd4e

Browse files
committed
Add matrix test for python.
1 parent da7895b commit 2aabd4e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,17 @@ jobs:
2424

2525
test:
2626
runs-on: ubuntu-latest
27+
strategy:
28+
matrix:
29+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2730
steps:
2831
- uses: actions/checkout@v4
2932

3033
- uses: astral-sh/setup-uv@v4
3134
with:
3235
version: "latest"
3336

34-
- run: uv sync
37+
- run: uv sync --python ${{ matrix.python-version }}
3538

3639
- name: Run unit tests
3740
run: uv run pytest -m "not integration" -v

0 commit comments

Comments
 (0)