Skip to content

Commit

Permalink
Test against PHP 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
olvlvl committed Oct 1, 2017
1 parent f244222 commit 2a26356
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ language: php
php:
- 7.0
- 7.1
- 7.2

before_script:
- if [[ $TRAVIS_PHP_VERSION != "7.0" ]]; then phpenv config-rm xdebug.ini; fi
- if [ $TRAVIS_PHP_VERSION != "7.0" ] && [ $TRAVIS_PHP_VERSION != "7.2" ]; then phpenv config-rm xdebug.ini; fi

script:
- if [[ $TRAVIS_PHP_VERSION == "7.0" ]]; then make test-coveralls; else make test; fi
- if [ $TRAVIS_PHP_VERSION == "7.0" ]; then make test-coveralls; else make test; fi

0 comments on commit 2a26356

Please sign in to comment.