Don't make tests fail just because of a style issue

This commit is contained in:
Dane Everitt 2020-06-28 15:41:46 -07:00
parent d0a4d477eb
commit 6143b656a3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -48,6 +48,7 @@ jobs:
run: composer install --prefer-dist --no-interaction --no-progress
- name: run cs-fixer
run: vendor/bin/php-cs-fixer fix --dry-run --diff --diff-format=udiff
continue-on-error: true
- name: execute unit tests
run: vendor/bin/phpunit --bootstrap bootstrap/app.php tests/Unit
if: ${{ always() }}