From 1f3e3043dd08609ec50ef81363a8a41df9826d0a Mon Sep 17 00:00:00 2001 From: Moon Sungjoon Date: Wed, 22 Nov 2023 14:41:00 +0800 Subject: [PATCH] CI: Set `fail-fast' to false This allows other jobs to continue running even if one job fails --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a98291a..0991ad4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,6 +9,7 @@ jobs: compile: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: CC: [ gcc, clang ] OS: [ "alpine:edge", "archlinux:base-devel" ]