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