We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82ff3ef commit 89ddd66Copy full SHA for 89ddd66
1 file changed
.github/workflows/test.yml
@@ -11,6 +11,9 @@ on:
11
jobs:
12
build:
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ python-version: ["'<3.13'", "'>=3.13'"]
17
steps:
18
- uses: actions/checkout@v4
19
@@ -21,7 +24,7 @@ jobs:
21
24
22
25
- name: Install Python dependencies
23
26
run: |
- uv sync --all-extras --dev
27
+ uv sync --all-extras --dev --python ${{ matrix.python-version }}
28
29
- name: Run tests
30
env:
0 commit comments