php-projecthoneypot/.travis.yml
Josh Sherman 45310527cf Updated php environments to test against
5.6 and hhvm are no longer allowed failures. hhvm-nightly as been added as
an allowed failure.
2014-09-17 13:09:22 -04:00

26 lines
413 B
YAML

language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm-nightly
install:
- composer install
before_script:
- mkdir -p build/logs
- cd tests
script:
- phpunit --colors --coverage-clover /home/travis/build/joshtronic/php-projecthoneypot/build/logs/clover.xml .
after_success:
- php ../vendor/bin/coveralls --config ../.coveralls.yml -v