Skip to content

Commit

Permalink
GH Actions: don't fail fast on "low" PHP versions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jrfnl committed Aug 7, 2021
1 parent e4b9518 commit 055ca5e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Expand Up @@ -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']
Expand Down

0 comments on commit 055ca5e

Please sign in to comment.