We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 725b0b5 + 8c9381e commit 3eb9246Copy full SHA for 3eb9246
1 file changed
.github/workflows/test.yml
@@ -7,6 +7,7 @@ jobs:
7
runs-on: ${{ matrix.os }}
8
9
strategy:
10
+ fail-fast: false
11
max-parallel: 8
12
matrix:
13
os:
@@ -17,14 +18,15 @@ jobs:
17
18
- uses: actions/checkout@v4
19
20
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v4
21
+ uses: actions/setup-python@v5
22
with:
23
python-version: ${{ matrix.python-version }}
24
25
+ - name: Upgrade pip
26
+ run: python -m pip install --upgrade pip
27
+
28
- name: Install dependencies
- run:
- python -m pip install --upgrade pip
- pip install tox tox-gh-actions
29
+ run: pip install tox tox-gh-actions
30
31
- name: Test with tox
32
run: tox
0 commit comments