mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 01:57:13 +00:00
35 lines
577 B
YAML
35 lines
577 B
YAML
language: php
|
|
|
|
dist: trusty
|
|
|
|
php:
|
|
- 7.0
|
|
- 7.1
|
|
- nightly
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php:
|
|
- nightly
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
before_script:
|
|
- composer install --no-interaction
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-clover=coverage.clover -v
|
|
|
|
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]
|