Skip to content

Commit f7f6473

Browse files
authored
Fix: Do not report code coverage to codecov.io (#951)
1 parent 42e335e commit f7f6473

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/integrate.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,7 @@ jobs:
5252
- name: "Collect code coverage from running unit tests with phpunit/phpunit"
5353
env:
5454
XDEBUG_MODE: "coverage"
55-
run: "vendor/bin/phpunit --colors=always --configuration=tests/phpunit.xml --coverage-clover=.build/phpunit/logs/clover.xml --testsuite=unit"
56-
57-
- name: "Send code coverage report to codecov.io"
58-
uses: "codecov/codecov-action@v4"
59-
with:
60-
files: ".build/phpunit/logs/clover.xml"
55+
run: "vendor/bin/phpunit --colors=always --configuration=tests/phpunit.xml --coverage-text --testsuite=unit"
6156

6257
coding-standards:
6358
name: "Coding Standards"

0 commit comments

Comments
 (0)