We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db41856 commit 0c85c1aCopy full SHA for 0c85c1a
.github/workflows/pytest.yml
@@ -15,14 +15,18 @@ jobs:
15
name: Run Pytest
16
runs-on: ubuntu-latest
17
18
+ strategy:
19
+ matrix:
20
+ python-version: [3.10, 3.11, 3.12]
21
+
22
steps:
23
- name: Checkout code
24
uses: actions/checkout@v4
25
- - name: Set up Python
26
+ - name: Set up Python ${{ matrix.python-version }}
27
uses: actions/setup-python@v5.1.0
28
with:
- python-version: '3.10'
29
+ python-version: ${{ matrix.python-version }}
30
31
- name: Install dependencies
32
run: |
@@ -31,4 +35,4 @@ jobs:
35
pip install -r requirements/requirements-test.txt
36
33
37
- name: Run Pytest
34
- run: pytest tests/
38
+ run: pytest tests/
0 commit comments