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 a4fabc5 commit f716312Copy full SHA for f716312
.github/workflows/quality-assurance.yml
@@ -18,7 +18,7 @@ permissions:
18
19
jobs:
20
unit-tests:
21
- name: PHPUnit tests (PHP ${{ matrix.php }})
+ name: PHPUnit test + cov. (PHP ${{ matrix.php }})
22
runs-on: ubuntu-latest
23
strategy:
24
matrix:
@@ -31,7 +31,11 @@ jobs:
31
with:
32
php-version: ${{ matrix.php }}
33
- run: ./composer.phar install -n --no-progress -o
34
- - run: ./composer.phar test
+ - run: ./composer.phar test+coverage
35
+ - name: Upload coverage reports to Codecov
36
+ uses: codecov/codecov-action@v5
37
+ with:
38
+ token: ${{ secrets.CODECOV_TOKEN }}
39
static-analysis:
40
name: PHPStan checks (PHP ${{ matrix.php }})
41
0 commit comments