mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 01:57:13 +00:00
34 lines
633 B
YAML
34 lines
633 B
YAML
language: php
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-clover=coverage.clover -v
|
|
- composer update --no-interaction --prefer-source
|
|
- vendor/bin/phpunit -v
|
|
|
|
before_script:
|
|
- composer install --no-interaction
|
|
|
|
after_script:
|
|
- wget https://scrutinizer-ci.com/ocular.phar
|
|
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
|
|
|
notifications:
|
|
irc: "irc.freenode.org#phpdocumentor"
|
|
email:
|
|
- [email protected]
|
|
- [email protected]
|
|
- [email protected]
|