From 3c8b7b4175f459f33fb24e38c03c3e9c680080d2 Mon Sep 17 00:00:00 2001 From: Anton Ukhanev Date: Mon, 21 Jun 2021 21:09:34 +0200 Subject: [PATCH] Always continue all jobs even if other jobs fail This will allow contributors to detect problems faster and easier, avoiding scenarios where a problem is corrected only to find that there is a different problem that was not visible in CI logs before on e.g. another PHP version. See discussion: https://github.com/php-fig/log-util/pull/2#discussion_r655343642 --- .github/workflows/continuous-integration.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 1ba957d..64d27b3 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -24,6 +24,7 @@ jobs: - php-versions: 5.4 dependency-levels: 'lowest' experimental: false + fail-fast: false continue-on-error: ${{ matrix.experimental }} steps: