Add codecov

This commit is contained in:
eai04191
2019-06-26 15:31:14 +09:00
parent cb1b2c9902
commit c60d41427d
2 changed files with 11 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
version: 2
jobs:
build:
docker:
@@ -67,7 +68,15 @@ jobs:
- run:
command: |
mkdir -p /tmp/phpunit
./vendor/bin/phpunit --log-junit /tmp/phpunit/phpunit.xml
./vendor/bin/phpunit --log-junit /tmp/phpunit/phpunit.xml --coverage-clover=/tmp/phpunit/coverage.xml
when: always
- store_test_results:
path: /tmp/phpunit
- store_artifacts:
path: /tmp/phpunit/coverage.xml
# Upload coverage
- run:
command: |
bash <(curl -s https://codecov.io/bash) -f /tmp/phpunit/coverage.xml
when: always