respect-validation/.travis.yml

30 lines
582 B
YAML
Raw Normal View History

2015-01-02 22:25:30 +01:00
sudo:
false
language:
php
2011-11-24 22:59:33 +01:00
php:
2013-07-03 03:42:37 +02:00
- 5.3
- 5.4
2013-07-03 02:30:24 +02:00
- 5.5
- 5.6
2014-05-16 17:54:18 +02:00
- hhvm
2015-01-02 22:25:30 +01:00
2011-12-19 14:00:14 +01:00
before_script:
- composer self-update
2015-04-16 23:30:30 +02:00
- composer install --no-interaction --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --colors --coverage-clover=coverage.clover
2015-01-02 22:25:30 +01:00
after_script:
2015-08-11 18:32:15 +02:00
- test "5.6" == "${TRAVIS_PHP_VERSION}" && wget https://scrutinizer-ci.com/ocular.phar
- test -f ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover
notifications:
irc:
channels:
- "irc.freenode.org#php-respect"
use_notice: true