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 49ecfa7 + 6cfa615 commit bc98a48Copy full SHA for bc98a48
.github/workflows/php.yml
@@ -46,3 +46,6 @@ jobs:
46
47
- name: Run php unit tests
48
run: composer run-script unit-tests
49
+
50
+ - name: Submit coverage report
51
+ run: bash <(curl -s https://codecov.io/bash)
phpunit.xml
@@ -18,4 +18,12 @@
18
<directory suffix="Test.php">./tests/Unit</directory>
19
</testsuite>
20
</testsuites>
21
+ <logging>
22
+ <log type="coverage-clover" target="clover.xml"/>
23
+ </logging>
24
+ <filter>
25
+ <whitelist>
26
+ <directory>tests/Unit</directory>
27
+ </whitelist>
28
+ </filter>
29
</phpunit>
0 commit comments