Files
barryvdh_ReflectionDocBlock/.travis.yml
T
2017-11-12 21:23:54 +01:00

32 lines
629 B
YAML

language: php
php:
- 7.0
- 7.1
- 7.2
cache:
directories:
- $HOME/.composer/cache
install:
- composer install --no-interaction
# coding style
- composer create-project symplify/easy-coding-standard temp/ecs
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover -v
# coding style
- temp/ecs/bin/ecs check src
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]