framework/.travis.yml

34 lines
520 B
YAML
Raw Normal View History

language: php
php:
- 5.5
- 5.6
2015-11-02 15:11:22 +08:00
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
before_script:
2016-01-28 14:59:04 +08:00
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi;
- sudo composer self-update
- composer install
script:
- composer style
- composer test
notifications:
email:
on_failure: change
webhooks:
urls:
- https://webhooks.gitter.im/e/7b9e9827a03b44a16588
on_success: always
on_failure: always
on_start: false
sudo: false