19 lines
337 B
YAML
19 lines
337 B
YAML
|
language: php
|
||
|
|
||
|
php:
|
||
|
- 5.4
|
||
|
- 5.5
|
||
|
- 5.6
|
||
|
- hhvm
|
||
|
|
||
|
script:
|
||
|
- mkdir -p build/logs
|
||
|
- cd tests && phpunit --coverage-clover build/logs/clover.xml
|
||
|
|
||
|
after_script:
|
||
|
- wget https://scrutinizer-ci.com/ocular.phar
|
||
|
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- hhvm
|