2015-08-02 04:18:44 +02:00
|
|
|
sudo: false
|
2014-07-19 15:37:48 +02:00
|
|
|
|
2015-08-02 04:18:44 +02:00
|
|
|
language: php
|
2014-07-19 15:37:48 +02:00
|
|
|
|
|
|
|
php:
|
2016-08-13 19:20:26 +02:00
|
|
|
- 7.0
|
2016-08-24 06:23:25 +02:00
|
|
|
- 7.1
|
2016-08-13 19:20:26 +02:00
|
|
|
- nightly
|
2014-07-19 15:37:48 +02:00
|
|
|
|
2016-08-24 06:23:25 +02:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- php: nightly
|
|
|
|
fast_finish: true
|
|
|
|
|
2017-06-17 10:49:54 +02:00
|
|
|
before_script:
|
|
|
|
# --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
|
2014-07-19 15:37:48 +02:00
|
|
|
|
2015-08-02 04:18:44 +02:00
|
|
|
script:
|
2016-08-13 19:20:26 +02:00
|
|
|
- phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
|
2017-06-17 10:49:54 +02:00
|
|
|
- PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix
|
2015-08-02 04:18:44 +02:00
|
|
|
|
2017-06-17 10:49:54 +02:00
|
|
|
after_script:
|
|
|
|
- php vendor/bin/coveralls -v
|
2016-04-01 16:34:32 +02:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
2017-06-17 10:49:54 +02:00
|
|
|
- $HOME/.composer/cache/files
|