1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-26 11:54:54 +01:00
byte-stream/.travis.yml

36 lines
631 B
YAML
Raw Permalink Normal View History

sudo: false
language: php
php:
- 7.0
- 7.1
- 7.2
2018-12-25 13:18:57 +01:00
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
env:
- AMP_DEBUG=true
install:
- composer update -n --prefer-dist
- wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar
- chmod +x coveralls.phar
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:
- ./coveralls.phar -v
cache:
directories:
- $HOME/.composer/cache/files
2018-09-21 23:00:17 +02:00
- $HOME/.php-cs-fixer