mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 06:18:07 +01:00
eed598e26c
This reverts commit 5f6b660e0baee3f1d9cc644e9f4b2b97e8129e03.
24 lines
551 B
YAML
24 lines
551 B
YAML
language: php
|
|
|
|
php:
|
|
- 7.1
|
|
|
|
install:
|
|
- composer install
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-clover coverage.xml
|
|
# disable xdebug
|
|
- phpenv config-rm xdebug.ini || return 0
|
|
# check coding standard (defined in composer.json "scripts" section)
|
|
# if this fails, run "composer fix-cs" to fix all fixable issues
|
|
- composer check-cs
|
|
|
|
after_script:
|
|
# upload coverage to Coveralls.io
|
|
- wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar
|
|
- php coveralls.phar --verbose
|
|
|
|
notifications:
|
|
email: never
|