Disable fail-fast

Failing fast is counter-productive, given that we want to know what OSes break.
This commit is contained in:
valkyrie_pilot 2023-03-12 18:40:03 -06:00 committed by GitHub
parent ef00ba34f2
commit 3cdcd33d68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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