Github Actions: Do not cancel further tests if one fails
This commit is contained in:
parent
f283c81ed2
commit
3c3437dafa
|
@ -41,16 +41,16 @@ jobs:
|
||||||
git clone --depth 1 https://github.com/Icinga/icingaweb2-module-pdfexport.git vendor/modules/pdfexport-web
|
git clone --depth 1 https://github.com/Icinga/icingaweb2-module-pdfexport.git vendor/modules/pdfexport-web
|
||||||
|
|
||||||
- name: PHP Lint
|
- name: PHP Lint
|
||||||
if: success() || matrix.allow_failure
|
if: ${{ ! cancelled() }}
|
||||||
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} --exclude=library/Icinga/Util/String.php ${{ matrix.phplint_options }} -- .
|
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} --exclude=library/Icinga/Util/String.php ${{ matrix.phplint_options }} -- .
|
||||||
|
|
||||||
- name: PHP CodeSniffer
|
- name: PHP CodeSniffer
|
||||||
if: success() || matrix.allow_failure
|
if: ${{ ! cancelled() }}
|
||||||
run: phpcs
|
run: phpcs
|
||||||
|
|
||||||
- name: PHPStan
|
- name: PHPStan
|
||||||
|
if: ${{ ! cancelled() }}
|
||||||
uses: php-actions/phpstan@v3
|
uses: php-actions/phpstan@v3
|
||||||
if: success() || matrix.allow_failure
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Unit tests with php ${{ matrix.php }} on ${{ matrix.os }}
|
name: Unit tests with php ${{ matrix.php }} on ${{ matrix.os }}
|
||||||
|
|
Loading…
Reference in New Issue