From 5686a6c982e589536535f9bbc285984befe12ad8 Mon Sep 17 00:00:00 2001 From: Stephan Grootveld Date: Wed, 10 Jun 2026 13:08:11 +0200 Subject: [PATCH] Upgrade codecov 6.0.0 --- .circleci/config.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3e95739..a204f34 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: @@ -76,9 +76,16 @@ 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