Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
codecov: codecov/codecov@4.1.0
codecov: codecov/codecov@6.0.0

jobs:
build:
Expand Down Expand Up @@ -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
Expand Down