18 lines
316 B
YAML
18 lines
316 B
YAML
language: php
|
|
php:
|
|
- 5.6
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- wjielai@tencent.com
|
|
- fysntian@tencent.com
|
|
|
|
before_script:
|
|
- composer install --prefer-dist --dev --no-interaction
|
|
|
|
script:
|
|
- phpunit -v --coverage-clover=coverage.xml
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|