mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-15 17:00:11 -05:00
Github Action: Do not cancel further tests if one fails
This commit is contained in:
parent
8e5c3d349f
commit
36cd13ad29
1 changed files with 3 additions and 3 deletions
6
.github/workflows/php.yml
vendored
6
.github/workflows/php.yml
vendored
|
|
@ -40,16 +40,16 @@ jobs:
|
|||
git clone --depth 1 -b snapshot/nightly https://github.com/Icinga/icinga-php-thirdparty.git vendor/icinga-php-thirdparty
|
||||
|
||||
- name: PHP Lint
|
||||
if: success() || matrix.allow_failure
|
||||
if: ${{ ! cancelled() }}
|
||||
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} -- .
|
||||
|
||||
- name: PHP CodeSniffer
|
||||
if: success() || matrix.allow_failure
|
||||
if: ${{ ! cancelled() }}
|
||||
run: phpcs
|
||||
|
||||
- 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 }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue