Skip to content

Commit 03dbc1c

Browse files
Run Pytest workflows on Python 3.11-3.14
1 parent b7c29e7 commit 03dbc1c

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/pytest.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ on:
1111

1212
jobs:
1313
verify:
14-
name: Run unit tests
14+
name: Run unit tests (Python ${{ matrix.python-version }})
1515
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1619
steps:
1720
- uses: actions/checkout@v6
18-
- name: "Install Python"
21+
- name: Install Python ${{ matrix.python-version }}
1922
uses: actions/setup-python@v6
2023
with:
21-
python-version-file: "pyproject.toml"
24+
python-version-file: ${{ matrix.python-version }}
2225
- name: Install uv
2326
uses: astral-sh/setup-uv@v7
2427
- name: Install the project

0 commit comments

Comments
 (0)