diff options
author | Carlos Ferreira <c.ferreira@acsiiweb.com> | 2016-11-24 03:49:08 +0100 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2016-11-23 21:49:08 -0500 |
commit | b1b6b27b75ca2d24bc5d8627680e2c9a6532d564 (patch) | |
tree | 5406fcbc399785814433b605f2738fcd4adcfe5e | |
parent | b9ab163344f1ed3a2232c7d273b20d86c25a2735 (diff) |
Add PHP 7.1 CI tests (#2829)
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 32403be4..c5300575 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ language: php sudo: false php: + - 7.1 - 7.0 - 5.6 - 5.5 @@ -20,7 +21,7 @@ matrix: fast_finish: true before_script: - - phpenv config-rm xdebug.ini + - if [[ $TRAVIS_PHP_VERSION != 7.x ]]; then phpenv config-rm xdebug.ini; fi - phpenv config-add tests/php.ini - composer install |