We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab88515 commit 1173fbbCopy full SHA for 1173fbb
1 file changed
.github/workflows/quick_test_and_codecov.yml
@@ -6,12 +6,23 @@ jobs:
6
uv_test:
7
name: Test with UV
8
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
+
19
steps:
20
- uses: actions/checkout@v6
21
22
- name: Install uv
23
uses: astral-sh/setup-uv@v7
24
with:
25
+ python-version: ${{ matrix.python-version }}
26
enable-cache: true
27
28
- name: Set up Python
0 commit comments