github: disable strategy.fail-fast
From https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast macOS pipeline is broken for quite some time, and when it fails before the Ubuntu pipeline it fails it too (even if the tests are passing). Setting `strategy.fail-fast` to false should avoid this issue.
This commit is contained in:
parent
13e00b70a4
commit
309808afbc
1
.github/workflows/test.yml
vendored
1
.github/workflows/test.yml
vendored
|
@ -6,6 +6,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
os: [ubuntu-latest, macos-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
Loading…
Reference in a new issue