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