Skip to content

Commit 5cbdcf5

Browse files
Fix selecting Python version in Pytest workflow
1 parent 03dbc1c commit 5cbdcf5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/pytest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ jobs:
1414
name: Run unit tests (Python ${{ matrix.python-version }})
1515
runs-on: ubuntu-latest
1616
strategy:
17+
fail-fast: false
1718
matrix:
1819
python-version: ["3.11", "3.12", "3.13", "3.14"]
1920
steps:
2021
- uses: actions/checkout@v6
2122
- name: Install Python ${{ matrix.python-version }}
2223
uses: actions/setup-python@v6
2324
with:
24-
python-version-file: ${{ matrix.python-version }}
25+
python-version: ${{ matrix.python-version }}
2526
- name: Install uv
2627
uses: astral-sh/setup-uv@v7
2728
- name: Install the project

0 commit comments

Comments
 (0)