From ca7def60e80418a0db40def93602b72a4d8c6656 Mon Sep 17 00:00:00 2001 From: Leroy Hopson Date: Sat, 3 Jul 2021 01:17:02 +0700 Subject: [PATCH] Don't cancel all in-progress jobs if a single one fails It is useful to get results from all jobs, whether or not a single one fails. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e03fb1b..1fdf4a3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,7 @@ jobs: build: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: platform: [ linux, javascript, osx, windows ] target: [ release, debug ]