Skip to content

Commit 7436581

Browse files
committed
Configure code coverage reporting
1 parent 2fb8ec8 commit 7436581

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/ci.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,20 @@ jobs:
2323

2424
- uses: php-actions/composer@v6 # or alternative dependency management
2525

26+
2627
- name: Run PHPUnit
27-
run: vendor/bin/phpunit
28+
run: vendor/bin/phpunit --coverage-clover ./coverage.xml
29+
env:
30+
XDEBUG_MODE: coverage
31+
32+
- name: Upload to Codecov
33+
uses: codecov/codecov-action@v2
34+
with:
35+
token: ${{ secrets.CODECOV_TOKEN }}
36+
files: ./coverage.xml
37+
verbose: true
38+
39+
2840
cs:
2941
name: Coding standards
3042
runs-on: ubuntu-latest

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
coverage
1515
coverage.txt
1616
.phpcs-cache
17+
coverage.xml

0 commit comments

Comments
 (0)