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 e04949a commit c0513d5Copy full SHA for c0513d5
.github/workflows/php.yml
@@ -33,4 +33,9 @@ jobs:
33
- name: Run test suite
34
env:
35
XDEBUG_MODE: coverage
36
- run: composer run-script test
+ run: composer run-script test
37
+
38
+ - name: Upload coverage reports to Codecov
39
+ uses: codecov/[email protected]
40
+ with:
41
+ token: ${{ secrets.CODECOV_TOKEN }}
composer.json
@@ -31,6 +31,6 @@
31
}
32
},
"scripts": {
- "test": "phpunit --coverage-text ."
+ "test": "phpunit --coverage-clover coverage.xml ."
0 commit comments