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