From 055ca5eb3fbc715e2c29dbcab5ee95264da7256b Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 8 Aug 2021 01:39:14 +0200 Subject: [PATCH] GH Actions: don't fail fast on "low" PHP versions I'd like to suggest adding this as a temporary measure until the failing code has been fixed. The `fail-fast` setting defaults to `true` and has the effect of cancelling any and all running/waiting builds within the same workflow as soon as one build has failed. By setting this to `false`, all builds will be always be run, allowing for easier debugging of the current test failures. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2e99c4..0acdbfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,7 @@ jobs: name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} runs-on: ${{ matrix.operating-system }} strategy: + fail-fast: false matrix: operating-system: ['ubuntu-18.04'] php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0']