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 202a0de commit 1e51246Copy full SHA for 1e51246
.github/workflows/ci.yaml
@@ -17,6 +17,11 @@ jobs:
17
strategy:
18
fail-fast: false
19
matrix:
20
+ python-version:
21
+ - "3.10"
22
+ - "3.11"
23
+ - "3.12"
24
+ - "3.13"
25
os:
26
- ubuntu-latest
27
- macos-latest
@@ -26,6 +31,8 @@ jobs:
31
- uses: actions/checkout@v4
32
- uses: astral-sh/setup-uv@v3
28
33
- uses: Swatinem/rust-cache@v2
34
+ - name: Install Python version
35
+ run: uv python install ${{ matrix.python-version }}
29
36
- name: Sync
30
37
run: uv sync --no-install-project
38
- name: Build directly with maturin
0 commit comments