Skip to content

Commit 1173fbb

Browse files
committed
matrix of pythons
1 parent ab88515 commit 1173fbb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/quick_test_and_codecov.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,23 @@ jobs:
66
uv_test:
77
name: Test with UV
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version:
12+
- "3.10"
13+
- "3.11"
14+
- "3.12"
15+
- "3.13"
16+
- "3.14"
17+
- "3.15"
18+
919
steps:
1020
- uses: actions/checkout@v6
1121

1222
- name: Install uv
1323
uses: astral-sh/setup-uv@v7
1424
with:
25+
python-version: ${{ matrix.python-version }}
1526
enable-cache: true
1627

1728
- name: Set up Python

0 commit comments

Comments
 (0)