mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 10:07:12 +00:00
32 lines
629 B
YAML
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]
|