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.
2 parents fe9ba2d + 9244d0d commit 5ea92bbCopy full SHA for 5ea92bb
.github/workflows/tests.yml
@@ -34,3 +34,12 @@ jobs:
34
35
- name: Execute tests
36
run: vendor/bin/phpunit
37
+ env:
38
+ XDEBUG_MODE: coverage
39
+
40
+ - name: Upload to Codecov
41
+ uses: codecov/codecov-action@v2
42
+ with:
43
+ token: ${{ secrets.CODECOV_TOKEN }}
44
+ files: ./build/coverage.xml
45
+ verbose: true
phpunit.xml.dist
@@ -20,7 +20,7 @@
20
<report>
21
<html outputDirectory="build/coverage"/>
22
<text outputFile="build/coverage.txt"/>
23
- <clover outputFile="build/logs/clover.xml"/>
+ <clover outputFile="build/coverage.xml"/>
24
</report>
25
</coverage>
26
<logging>
0 commit comments