From 6ae707ef0f6d63e58b053d4caea900b3a3aeb55f Mon Sep 17 00:00:00 2001 From: Stephan Grootveld Date: Wed, 10 Jun 2026 13:25:30 +0200 Subject: [PATCH] Upgrade Codecov 6.0.0 --- .circleci/config.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 65af505..e411055 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - codecov: codecov/codecov@4.1.0 + codecov: codecov/codecov@6.0.0 jobs: build: @@ -71,9 +71,15 @@ jobs: name: Run Unit Tests command: | mkdir -p ./logs/phpunit - vendor/bin/phpunit -d memory_limit=1G --coverage-clover coverage.xml --log-junit logs/phpunit/junit.xml --testdox-html logs/phpunit/testdox.html + vendor/bin/phpunit -d memory_limit=1G --coverage-clover logs/phpunit/coverage.xml --log-junit logs/phpunit/junit.xml --testdox-html logs/phpunit/testdox.html - codecov/upload: - file: coverage.xml + report_type: coverage + disable_search: true + files: logs/phpunit/coverage.xml + - codecov/upload: + report_type: test_results + disable_search: true + files: logs/phpunit/junit.xml - store_artifacts: path: ./logs/phpunit destination: phpunit