Skip to content

Commit 786f32d

Browse files
Add matrix testing to conformance tests
Maybe ought to just move these into the "unit test" workflow...
1 parent 1af0bf1 commit 786f32d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/conformance.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21+
resolution: ["highest", "lowest-direct"]
2122
steps:
2223
- name: Checkout code
2324
uses: actions/checkout@v5
@@ -29,7 +30,7 @@ jobs:
2930
go-version: stable
3031
cache: false
3132
- uses: astral-sh/setup-uv@v6
32-
- name: Install Python ${{ matrix.python-version }}
33-
run: uv python install ${{ matrix.python-version }}
33+
with:
34+
python-version: ${{ matrix.python-version }}
3435
- name: Test conformance
35-
run: make conformance
36+
run: UV_RESOLUTION=${{ matrix.resolution }} make conformance

0 commit comments

Comments
 (0)