From b924670d3bebb6c78227c5ad47b4980adfa79459 Mon Sep 17 00:00:00 2001 From: Colin O'Dell Date: Tue, 24 Mar 2015 10:38:03 -0400 Subject: [PATCH] Update travis.yml; test against 7.0 --- .travis.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 67753ce..ee616bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,17 @@ php: - 5.4 - 5.5 - 5.6 + - 7.0 - hhvm +matrix: + allow_failures: + - php: 7.0 + before_script: + - composer self-update - composer install -n --dev --prefer-source -script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text +script: + - vendor/bin/phpcs --standard=PSR2 src + - vendor/bin/phpunit --coverage-text