hhvm-nightly is no more, but there is a php 7.0. Will it pass? The suspense is killing me!
25 lines
425 B
YAML
25 lines
425 B
YAML
language: php
|
|
|
|
install:
|
|
- curl http://get.sensiolabs.org/php-cs-fixer.phar -o php-cs-fixer.phar
|
|
|
|
script:
|
|
- phpunit
|
|
- if [[ `php -r "echo version_compare(PHP_VERSION, '5.3.6', '>=') && !defined('HHVM_VERSION');"` ]]; then php php-cs-fixer.phar --diff --dry-run -vv fix; fi
|
|
|
|
php:
|
|
- 5.2
|
|
- 5.3
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- hhvm
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm-nightly
|
|
fast_finish: true
|