Skip to content

Commit

Permalink
Github Actions: Do not cancel further tests if one fails
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhwinder33445 committed Aug 30, 2023
1 parent 368b524 commit badc27a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ jobs:
run: composer require -n --no-progress overtrue/phplint

- name: PHP Lint
if: success() || matrix.allow_failure
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} -- .
if: ${{ ! cancelled() }}
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} -- .

- name: PHP CodeSniffer
if: success() || matrix.allow_failure
run: phpcs -wps --colors
if: ${{ ! cancelled() }}
run: phpcs -wps --colors

- name: PHPStan
if: ${{ ! cancelled() }}
uses: php-actions/phpstan@v3
if: success() || matrix.allow_failure

test:
name: Unit tests with php ${{ matrix.php }} on ${{ matrix.os }}
Expand Down

0 comments on commit badc27a

Please sign in to comment.