We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03dbc1c commit 5cbdcf5Copy full SHA for 5cbdcf5
1 file changed
.github/workflows/pytest.yml
@@ -14,14 +14,15 @@ jobs:
14
name: Run unit tests (Python ${{ matrix.python-version }})
15
runs-on: ubuntu-latest
16
strategy:
17
+ fail-fast: false
18
matrix:
19
python-version: ["3.11", "3.12", "3.13", "3.14"]
20
steps:
21
- uses: actions/checkout@v6
22
- name: Install Python ${{ matrix.python-version }}
23
uses: actions/setup-python@v6
24
with:
- python-version-file: ${{ matrix.python-version }}
25
+ python-version: ${{ matrix.python-version }}
26
- name: Install uv
27
uses: astral-sh/setup-uv@v7
28
- name: Install the project
0 commit comments