1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/.travis.yml

30 lines
527 B
YAML
Raw Normal View History

2015-07-29 23:29:24 +02:00
sudo: false
2015-04-29 17:29:09 +02:00
language: php
2015-07-19 19:29:25 +02:00
2015-04-29 17:29:09 +02:00
php:
2015-08-07 17:20:02 +02:00
- 7.0
2016-09-07 23:49:47 +02:00
- 7.1
- nightly
2015-07-19 19:29:25 +02:00
2016-09-07 23:49:47 +02:00
matrix:
allow_failures:
- php: nightly
fast_finish: true
install:
2015-07-19 19:29:25 +02:00
- composer self-update
2016-08-11 21:35:58 +02:00
- composer install --no-interaction --prefer-source
2015-07-19 19:29:25 +02:00
script:
2016-08-11 21:35:58 +02:00
- phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
2015-07-19 19:29:25 +02:00
- php vendor/bin/php-cs-fixer --diff --dry-run -v fix
after_script:
2016-08-11 21:35:58 +02:00
- composer require satooshi/php-coveralls dev-master
- php vendor/bin/coveralls -v
cache:
directories:
- $HOME/.composer/cache