From 61333a958e91f87bebb1b41c29ffec8fce0776f2 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Fri, 18 Jun 2021 17:31:57 +1000 Subject: [PATCH] Continue all jobs when one failed It's nice to see the whole result to then work on all failures, especially when there are flaky specs. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b1d612cb0..f636dbbfa3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,6 +42,7 @@ jobs: - "spec/serializers" - "spec/system" - "engines/*/spec" + fail-fast: false steps: - uses: actions/checkout@v2