Skip to content

Commit

Permalink
Merge pull request #478 from Ayesh/php8-builds
Browse files Browse the repository at this point in the history
Travis CI: Enable builds on PHP nightly
  • Loading branch information
ciaranmcnulty committed Jul 7, 2020
2 parents a0ca1eb + 7aa9ffc commit 9d922c6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Expand Up @@ -21,12 +21,16 @@ matrix:
dist: bionic
- php: 7.4
dist: bionic
- php: nightly
env: COMPOSER_FLAGS='--ignore-platform-reqs'
fast_finish: true
allow_failures:
- php: nightly

install:
- export COMPOSER_ROOT_VERSION=dev-master
- if [ "$DEPENDENCIES" != "low" ]; then composer update; fi;
- if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi;
- if [ "$DEPENDENCIES" != "low" ]; then composer update $COMPOSER_FLAGS; fi;
- if [ "$DEPENDENCIES" == "low" ]; then composer update $COMPOSER_FLAGS --prefer-lowest; fi;

script:
- vendor/bin/phpspec run -fpretty -v
Expand Down

0 comments on commit 9d922c6

Please sign in to comment.