We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd90c0 commit 917590cCopy full SHA for 917590c
.github/workflows/phpunit.yml
@@ -41,4 +41,9 @@ jobs:
41
composer require laravel/laravel:"${{ matrix.laravel }}" --dev --no-interaction --no-update
42
composer install --no-interaction --no-progress
43
- name: Run PHPUnit
44
- run: ./vendor/bin/phpunit
+ run: ./vendor/bin/phpunit --coverage-clover coverage.xml .
45
+ - name: Upload coverage reports to Codecov
46
+ uses: codecov/codecov-action@v5
47
+ if: matrix.laravel == '12.*' && matrix.php == '8.4'
48
+ with:
49
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments