respect-validation/.travis.yml
Henrique Moody 63d5fb1ee4 Add PHP 7 to Travis builds
Fix wrong octal notation in "HexRgbColor" test case
2015-02-26 17:55:51 -03:00

39 lines
609 B
YAML

sudo:
false
language:
php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- hhvm-nightly
cache:
directories:
- vendor
before_script:
- composer install --dev --no-interaction --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --colors --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
matrix:
allow_failures:
- php: hhvm-nightly
notifications:
irc:
channels:
- "irc.freenode.org#php-respect"
use_notice: true