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:
Thiago Kenji Okada 2021-10-14 13:44:54 -03:00
parent 13e00b70a4
commit 309808afbc
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ on:
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}