Skip to content

Commit 9470d11

Browse files
authored
Merge pull request #57 from testmonitor/upgrade-codecov
Upgrade to Codecov 6.0.0
2 parents 5e9d63d + ad92e78 commit 9470d11

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
codecov: codecov/codecov@5.4.3
4+
codecov: codecov/codecov@6.0.0
55

66
jobs:
77
build:
@@ -71,16 +71,19 @@ jobs:
7171
name: Run Unit Tests
7272
command: |
7373
mkdir -p ./logs/phpunit
74-
vendor/bin/phpunit -d memory_limit=1G --coverage-clover coverage.xml --log-junit logs/phpunit/junit.xml --testdox-html logs/phpunit/testdox.html
74+
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
7575
- store_artifacts:
7676
path: ./logs/phpunit
7777
destination: phpunit
7878
- store_test_results:
7979
path: ./logs
8080
- codecov/upload:
8181
report_type: coverage
82+
disable_search: true
83+
files: logs/phpunit/coverage.xml
8284
- codecov/upload:
8385
report_type: test_results
86+
disable_search: true
8487
files: logs/phpunit/junit.xml
8588

8689
workflows:

0 commit comments

Comments
 (0)