Change GitHub Actions failure mode
When a single GitHub Action build fails, the other builds should not be canceled, but instead should continue to build. Since the matrix is setup on OS level, a failing build on one OS usually doesn't mean it's broken for all OS.
This commit is contained in:
parent
88451a0740
commit
b762276a27
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@ -8,6 +8,7 @@ jobs:
|
||||
runs-on: ${{ matrix.platform.os }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform:
|
||||
- { name: Windows VS2017, os: windows-2016 }
|
||||
|
Loading…
Reference in New Issue
Block a user