respect-validation/.travis.yml
Henrique Moody 418480a385 Remove hhvm-nightly from the build matrix
HHVM nightly is no longer supported on Ubuntu Precise.
2015-07-28 17:14:51 -03:00

30 lines
518 B
YAML

sudo:
false
language:
php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --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
notifications:
irc:
channels:
- "irc.freenode.org#php-respect"
use_notice: true