We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8ce0ce commit 1f31a0eCopy full SHA for 1f31a0e
.github/workflows/tests.yaml
@@ -11,13 +11,17 @@ jobs:
11
tests:
12
runs-on: "ubuntu-latest"
13
name: Run tests
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ python-version: ["3.12", "3.13"]
18
steps:
19
- name: Check out code from GitHub
20
uses: "actions/checkout@v4"
- - name: Setup Python
21
+ - name: Setup Python ${{ matrix.python-version }}
22
uses: "actions/setup-python@v5"
23
with:
- python-version: "3.13"
24
+ python-version: ${{ matrix.python-version }}
25
- name: Install requirements
26
run: |
27
pip install --constraint=.github/workflows/constraints.txt pip
0 commit comments