Skip to content

Commit

Permalink
Remove the --colors=always flag in the GitHub workflow file (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer authored Apr 4, 2024
1 parent e5810c9 commit f81663a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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

0 comments on commit f81663a

Please sign in to comment.