From 6143b656a34176d9643c11790d80936a74ce3bff Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sun, 28 Jun 2020 15:41:46 -0700 Subject: [PATCH] Don't make tests fail just because of a style issue --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a507466e1..a28a2d7ee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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() }}