1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Fix: Do not report code coverage to codecov.io (#951)

This commit is contained in:
Andreas Möller
2024-02-17 18:40:45 +01:00
committed by GitHub
parent 42e335e32a
commit f7f647360b

View File

@@ -52,12 +52,7 @@ jobs:
- name: "Collect code coverage from running unit tests with phpunit/phpunit"
env:
XDEBUG_MODE: "coverage"
run: "vendor/bin/phpunit --colors=always --configuration=tests/phpunit.xml --coverage-clover=.build/phpunit/logs/clover.xml --testsuite=unit"
- name: "Send code coverage report to codecov.io"
uses: "codecov/codecov-action@v4"
with:
files: ".build/phpunit/logs/clover.xml"
run: "vendor/bin/phpunit --colors=always --configuration=tests/phpunit.xml --coverage-text --testsuite=unit"
coding-standards:
name: "Coding Standards"