Skip to content

Commit

Permalink
ref(ci): Do not use fail-fast strategy (#1076)
Browse files Browse the repository at this point in the history
We have flaky tests on platforms.  It's best to let them all run on
all platforms so we see all failures and have more debugging tools.
  • Loading branch information
flub authored Jun 6, 2023
1 parent bec1bbe commit e0b2a9b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
name: Build and test (Nix)
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
name: [ubuntu-latest, macOS-arm-latest]
rust: [nightly, stable]
Expand Down Expand Up @@ -62,6 +63,7 @@ jobs:
name: Build and test (Windows)
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
name: [windows-latest]
rust: [nightly, stable]
Expand Down

0 comments on commit e0b2a9b

Please sign in to comment.