We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e33337 commit 0d4d9deCopy full SHA for 0d4d9de
.github/workflows/ci.yml
@@ -65,4 +65,20 @@ jobs:
65
with:
66
php-version: ${{ matrix.php-version }}
67
- uses: ramsey/composer-install@v3
68
- - run: vendor/bin/phpunit
+ - run: vendor/bin/phpunit
69
+ coverage:
70
+ name: Coverage
71
+ needs:
72
+ - dependency-validation
73
+ runs-on: ubuntu-latest
74
+ timeout-minutes: 5
75
+ steps:
76
+ - uses: actions/checkout@v4
77
+ - uses: shivammathur/setup-php@v2
78
+ with:
79
+ php-version: 8.4
80
+ - uses: ramsey/composer-install@v3
81
+ - run: vendor/bin/phpunit --coverage-clover=coverage.xml
82
+ - uses: codecov/codecov-action@v5
83
+ env:
84
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments