Skip to content

Commit 500b442

Browse files
ci: test on Python 3.12 and 3.14
Test minimum supported version and latest stable. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8c59f38 commit 500b442

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ jobs:
1818

1919
test:
2020
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
python: ["3.12", "3.14"]
2124
steps:
2225
- uses: actions/checkout@v4
2326
- uses: astral-sh/setup-uv@v3
24-
- run: uv sync --frozen
27+
- run: uv python install ${{ matrix.python }}
28+
- run: uv sync --python ${{ matrix.python }}
2529
- run: uv run pytest tests/test_client.py -v

0 commit comments

Comments
 (0)