mirror of
https://github.com/danog/parallel.git
synced 2024-11-26 20:34:40 +01:00
30 lines
769 B
YAML
30 lines
769 B
YAML
language: php
|
|
|
|
php:
|
|
- 7.0
|
|
- 7.1
|
|
- nightly
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: nightly
|
|
fast_finish: true
|
|
|
|
install:
|
|
# --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
|
|
# pthreads is now only supported on PHP 7.2+
|
|
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then
|
|
travis/install-pthreads.sh;
|
|
fi
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
|
|
- PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix
|
|
|
|
after_script:
|
|
- vendor/bin/coveralls -v --exclude-no-stmt
|