From 22030bffd06eedb83cdfedd7426b9c8875adfae0 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 3 Mar 2022 16:01:09 +0000 Subject: [PATCH] ci: update to use ANSI output --- .github/workflows/static.yml | 8 ++++---- .github/workflows/tests.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 09e0d064..fc8eb823 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -20,10 +20,10 @@ jobs: coverage: none - name: Install Dependencies - run: composer update --no-interaction --no-progress + run: composer update --no-interaction --no-progress --ansi - name: Run PHP-CS-Fixer - run: PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix -v --allow-risky=yes --dry-run + run: PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix -v --allow-risky=yes --dry-run --ansi phpstan: runs-on: ubuntu-latest @@ -45,7 +45,7 @@ jobs: coverage: none - name: Install Dependencies - run: composer update --prefer-stable --no-interaction --no-progress + run: composer update --prefer-stable --no-interaction --no-progress --ansi - name: Run PHPStan - run: vendor/bin/phpstan analyse --no-progress --debug + run: vendor/bin/phpstan analyse --no-progress --debug --ansi diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9245e846..38eb41d1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,7 +36,7 @@ jobs: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Install PHP dependencies - run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress + run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi - name: Unit Tests run: php bin/pest --colors=always --exclude-group=integration