From cd3202b5196b9324ca4c7367c4fc16119f303604 Mon Sep 17 00:00:00 2001 From: wcampbell Date: Sat, 14 Oct 2023 12:07:36 -0400 Subject: [PATCH] ci: Use strategy fail-fast: false --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a2cd5aa..7b0aa1b3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,6 +16,11 @@ jobs: env: RUSTFLAGS: "-C target-feature=+crt-static" strategy: + # By default, this is set to `true`, which means that a single CI job + # failure will cause all outstanding jobs to be canceled. This slows down + # development because it means that errors need to be encountered and + # fixed one at a time. + fail-fast: false matrix: target: - x86_64-unknown-linux-musl