Skip to content

Commit

Permalink
ci: fix multiline string in test.yml & use fail-fast strategy (#514)
Browse files Browse the repository at this point in the history
* Fix multiline string in test.yml

* strategy: fail-fast: false

* Update test.yml
  • Loading branch information
cclauss authored Apr 8, 2024
1 parent bf20c80 commit 8c9381e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
max-parallel: 8
matrix:
os:
Expand All @@ -17,14 +18,15 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Install dependencies
run:
python -m pip install --upgrade pip
pip install tox tox-gh-actions
run: pip install tox tox-gh-actions

- name: Test with tox
run: tox

0 comments on commit 8c9381e

Please sign in to comment.