deployer/.travis.yml

37 lines
638 B
YAML
Raw Normal View History

2013-11-16 17:43:33 +04:00
language: php
php:
2015-06-18 12:41:22 +02:00
- 7.0
- 7.1
2015-05-11 20:52:10 +07:00
matrix:
2015-06-18 12:41:22 +02:00
allow_failures:
- php: 7.1
2016-03-19 21:40:40 +07:00
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS="--prefer-stable"
2017-03-16 21:03:39 +07:00
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y acl
2015-05-11 20:52:10 +07:00
install:
2015-02-17 12:56:29 +03:00
- composer self-update
- composer update --no-interaction --prefer-source $COMPOSER_FLAGS
2017-08-22 22:38:26 +07:00
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
2015-09-11 17:33:11 +07:00
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/3ffa605389816ec39774
on_success: change
on_failure: always
on_start: never