From b3d7066b6b5db8ea3c6def47911784a1c79f447a Mon Sep 17 00:00:00 2001 From: Leo Feyer <1192057+leofeyer@users.noreply.github.com> Date: Thu, 4 Apr 2024 17:34:05 +0200 Subject: [PATCH] Remove the --colors=always flag in the GitHub workflow file --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e020480..e7f110b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: run: composer install --no-interaction --no-progress - name: Generate the coverage report - run: php -d pcov.enabled=1 vendor/bin/phpunit --coverage-clover=clover.xml --colors=always + run: php -d pcov.enabled=1 vendor/bin/phpunit --coverage-clover=clover.xml - name: Upload the coverage report uses: codecov/codecov-action@v3 @@ -90,7 +90,7 @@ jobs: run: composer install --no-interaction --no-progress - name: Run the unit tests - run: vendor/bin/phpunit --colors=always + run: vendor/bin/phpunit nightly: name: PHP 8.4 @@ -112,7 +112,7 @@ jobs: run: composer install --ignore-platform-req=php+ --no-interaction --no-progress - name: Run the unit tests - run: vendor/bin/phpunit --colors=always + run: vendor/bin/phpunit prefer-lowest: name: Prefer Lowest @@ -133,4 +133,4 @@ jobs: run: composer update --prefer-lowest --prefer-stable --no-interaction --no-progress - name: Run the unit tests - run: vendor/bin/phpunit --colors=always + run: vendor/bin/phpunit