We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8fa2c1 commit d587389Copy full SHA for d587389
.github/workflows/tests.yml
@@ -7,11 +7,15 @@ on:
7
jobs:
8
pytest:
9
runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ python-version: ['3.9', '3.11']
14
steps:
15
- uses: actions/checkout@v4
16
- uses: actions/setup-python@v5
17
with:
- python-version: '3.11'
18
+ python-version: ${{ matrix.python-version }}
19
- name: Install
20
run: |
21
python -m pip install --upgrade pip
0 commit comments