Skip to content

Commit

Permalink
Don't fail fast in CI
Browse files Browse the repository at this point in the history
It's useful to see why each build failed and fixing them all in one go,
rather than fixing the problems one by one.
  • Loading branch information
Thomasdezeeuw committed Jan 12, 2021
1 parent e3b44e8 commit 6124666
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
build: [stable, beta, nightly, macos, windows]
include:
Expand Down Expand Up @@ -55,6 +56,7 @@ jobs:
name: Check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# TODO: add the following targets, currently broken.
# "x86_64-unknown-redox"
Expand Down

0 comments on commit 6124666

Please sign in to comment.