framework/.travis.yml

27 lines
403 B
YAML
Raw Normal View History

language: php
php:
2015-11-02 15:11:22 +08:00
- 7.0
2017-02-04 04:53:39 +08:00
- 7.1
2017-10-05 19:57:31 +08:00
- 7.2
matrix:
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;
2016-01-28 15:06:33 +08:00
- composer self-update
- composer install
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
notifications:
email:
on_failure: change
after_success:
- bash <(curl -s https://codecov.io/bash)
sudo: false