2015-07-19 19:50:31 +02:00
|
|
|
sudo: false
|
|
|
|
|
2015-07-18 21:10:28 +02:00
|
|
|
language: php
|
2015-07-18 21:17:41 +02:00
|
|
|
|
2015-07-18 21:10:28 +02:00
|
|
|
php:
|
2016-08-24 06:58:25 +02:00
|
|
|
- 7.0
|
|
|
|
- 7.1
|
|
|
|
- nightly
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- php: nightly
|
|
|
|
fast_finish: true
|
2015-07-18 21:17:41 +02:00
|
|
|
|
2016-11-15 06:17:19 +01:00
|
|
|
install:
|
2017-06-21 14:50:38 +02:00
|
|
|
# --ignore-platform-reqs, because https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2722
|
|
|
|
- composer update -n --prefer-dist --ignore-platform-reqs
|
|
|
|
- composer require satooshi/php-coveralls dev-master --ignore-platform-reqs
|
|
|
|
|
2017-05-18 18:12:17 +02:00
|
|
|
- travis/install-eio.sh
|
|
|
|
- travis/install-uv.sh
|
2015-07-18 21:17:41 +02:00
|
|
|
|
2015-07-18 21:10:28 +02:00
|
|
|
script:
|
2016-08-24 06:58:25 +02:00
|
|
|
- phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
|
2017-06-21 14:50:38 +02:00
|
|
|
- PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix
|
2015-07-19 18:22:16 +02:00
|
|
|
|
|
|
|
after_script:
|
2015-07-19 19:42:04 +02:00
|
|
|
- php vendor/bin/coveralls -v
|
2016-08-24 06:58:25 +02:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.composer/cache
|