Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the --colors=always flag in the GitHub workflow file #28

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading