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 fd386a0 commit 4d93e09Copy full SHA for 4d93e09
.github/workflows/continuous-integration.yml
@@ -49,6 +49,7 @@ jobs:
49
with:
50
php-version: "${{ matrix.php-version }}"
51
extensions: mongodb
52
+ coverage: "pcov"
53
54
- name: "Restrict DBAL version"
55
if: "${{ matrix.dbal-version }}"
@@ -60,7 +61,12 @@ jobs:
60
61
dependency-versions: "${{ matrix.deps }}"
62
63
- name: "Run PHPUnit"
- run: "bin/phpunit -c tests"
64
+ run: "bin/phpunit -c tests --coverage-clover=coverage.xml"
65
+
66
+ - name: "Send coverage to Codecov"
67
+ uses: "codecov/codecov-action@v2"
68
+ with:
69
+ file: "coverage.xml"
70
71
lint-doctrine-xml-schema:
72
name: Lint Doctrine XML schemas
0 commit comments