Skip to content

Commit 1f31a0e

Browse files
committed
Test with multiple python versions
* .github/workflows/tests.yaml:
1 parent e8ce0ce commit 1f31a0e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ jobs:
1111
tests:
1212
runs-on: "ubuntu-latest"
1313
name: Run tests
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
python-version: ["3.12", "3.13"]
1418
steps:
1519
- name: Check out code from GitHub
1620
uses: "actions/checkout@v4"
17-
- name: Setup Python
21+
- name: Setup Python ${{ matrix.python-version }}
1822
uses: "actions/setup-python@v5"
1923
with:
20-
python-version: "3.13"
24+
python-version: ${{ matrix.python-version }}
2125
- name: Install requirements
2226
run: |
2327
pip install --constraint=.github/workflows/constraints.txt pip

0 commit comments

Comments
 (0)