1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 09:17:57 +01:00
file/.travis.yml

49 lines
1015 B
YAML
Raw Normal View History

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.1
2017-12-01 03:02:03 +01:00
- 7.2
2019-08-23 21:03:16 +02:00
- 7.3
2020-02-21 20:06:01 +01:00
- 7.4
2016-08-24 06:58:25 +02:00
- nightly
2020-02-21 20:06:01 +01:00
jobs:
2016-08-24 06:58:25 +02:00
allow_failures:
- php: nightly
fast_finish: true
2015-07-18 21:17:41 +02:00
env:
- AMP_DEBUG=true
before_install:
2020-02-21 20:06:01 +01:00
- if [ "$TRAVIS_PHP_VERSION" != "7.1" ]; then
phpenv config-rm xdebug.ini || echo "No xdebug config.";
travis/install-pcov.sh;
fi
- travis/install-eio.sh
- travis/install-uv.sh
2020-02-21 20:06:01 +01:00
- wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.2.0/php-coveralls.phar
2015-07-18 21:17:41 +02:00
2020-02-21 20:06:01 +01:00
install:
- if [ "$TRAVIS_PHP_VERSION" = "nightly" ]; then
composer update -n --prefer-dist --ignore-platform-reqs;
2017-12-17 20:56:45 +01:00
else
2020-02-21 20:06:01 +01:00
composer update -n --prefer-dist;
2017-12-17 20:56:45 +01:00
fi
2020-02-21 20:06:01 +01:00
- composer show
script:
- vendor/bin/phpunit --coverage-text --verbose --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:
2020-02-21 20:06:01 +01:00
- travis_retry php php-coveralls.phar -v
2016-08-24 06:58:25 +02:00
cache:
directories:
- $HOME/.composer/cache
2018-10-27 18:24:06 +02:00
- $HOME/.php-cs-fixer
- $HOME/.local