From 10fe7b03fb7f19d975fae53498757a1f9cbea5c6 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 28 Jul 2023 14:59:04 +0200 Subject: [PATCH] Turn off GitHub Actions fail-fast https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 10672c2..6f08ad3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,6 +17,7 @@ jobs: name: test runs-on: ubuntu-latest strategy: + fail-fast: false matrix: container: - debian # uses debian:buster-20200327-slim which is debian 10.3 @@ -36,6 +37,7 @@ jobs: name: test_all runs-on: ubuntu-latest strategy: + fail-fast: false matrix: container: - ubuntu # uses ubuntu:bionic-20200311 which is ubuntu 18.04