Allow all jobs to run to completion even if one fails

See: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast
This commit is contained in:
Joe Taber
2023-09-23 21:43:51 -05:00
committed by GitHub
parent a5db117ef6
commit f03336b3a2

View File

@@ -14,6 +14,7 @@ jobs:
build-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- { os: windows-latest, rust-version: stable, shell: 'msys2 {0}', target: 'x86_64-pc-windows-gnu'}