Skip to content

Commit

Permalink
Make tests run on PHP 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lcobucci committed Jul 2, 2020
1 parent bff03fe commit fa39dd0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ cache:
before_install:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available"

install: travis_retry make vendor
install:
- |
if [ $TRAVIS_PHP_VERSION = 'nightly' ]; then
travis_retry travis_retry make vendor EXTRA_FLAGS="--ignore-platform-reqs";
else
travis_retry travis_retry make vendor;
fi
script:
- make unit-test
Expand Down

0 comments on commit fa39dd0

Please sign in to comment.