deployer/.travis.yml
Vitaliy Ryaboy 7043cd5ad1 Update .travis.yml
Travis modified for current use of the project phpunit
2017-03-10 00:16:02 +01:00

34 lines
552 B
YAML

language: php
sudo: required
php:
- 5.6
- 7.0
- 7.1
matrix:
allow_failures:
- php: 7.1
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS="--prefer-stable"
install:
- eval `ssh-agent -s`
- test/travis/setup-secure-shell.sh
- composer self-update
- composer update --no-interaction --prefer-source $COMPOSER_FLAGS
script: vendor/bin/phpunit
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/3ffa605389816ec39774
on_success: change
on_failure: always
on_start: never