Skip to content

Commit 8e32c41

Browse files
committed
Fix CI so that it actually runs on the correct python version
1 parent 1424d8f commit 8e32c41

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ jobs:
44
tests:
55
runs-on: ubuntu-latest
66
strategy:
7+
fail-fast: false
78
matrix:
89
python-version: [
910
'3.8',
@@ -20,12 +21,10 @@ jobs:
2021
name: Python ${{ matrix.python-version }} ${{ matrix.post-venv }}
2122
steps:
2223
- uses: actions/checkout@v4
23-
- uses: actions/setup-python@v5
24-
with:
25-
python-version: ${{ matrix.python-version }}
26-
architecture: x64
2724
- name: Install uv
2825
uses: astral-sh/setup-uv@v7
26+
with:
27+
python-version: ${{ matrix.python-version }}
2928
- run: make venv
3029
- if: ${{ matrix.post-venv }}
3130
run: ${{ matrix.post-venv }}

0 commit comments

Comments
 (0)