Skip to content

Commit 8c9381e

Browse files
authored
ci: fix multiline string in test.yml & use fail-fast strategy (#514)
* Fix multiline string in test.yml * strategy: fail-fast: false * Update test.yml
1 parent bf20c80 commit 8c9381e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88

99
strategy:
10+
fail-fast: false
1011
max-parallel: 8
1112
matrix:
1213
os:
@@ -17,14 +18,15 @@ jobs:
1718
- uses: actions/checkout@v4
1819

1920
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2122
with:
2223
python-version: ${{ matrix.python-version }}
2324

25+
- name: Upgrade pip
26+
run: python -m pip install --upgrade pip
27+
2428
- name: Install dependencies
25-
run:
26-
python -m pip install --upgrade pip
27-
pip install tox tox-gh-actions
29+
run: pip install tox tox-gh-actions
2830

2931
- name: Test with tox
3032
run: tox

0 commit comments

Comments
 (0)