Skip to content

Commit

Permalink
enable nightly builds in travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisB9 committed Aug 9, 2020
1 parent f8324ec commit 954e7ee
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions .travis.yml
@@ -1,20 +1,31 @@
language: php

php:
- "7.2"
- "7.3"
- "7.4"
# - "nightly"

#allow_failures:
# - "nightly"
matrix:
include:
- php: 7.2
dist: bionic
env: COMPOSER_OPTS=""
- php: 7.3
dist: bionic
env: COMPOSER_OPTS=""
- php: 7.4
dist: bionic
env: COMPOSER_OPTS=""
- php: nightly
dist: bionic
env: COMPOSER_OPTS="--ignore-platform-reqs"
allow_failures:
- php: nightly
env: COMPOSER_OPTS="--ignore-platform-reqs"

cache:
directories:
- $HOME/.composer/cache

install:
- travis_retry composer install $COMPOSER_OPTS

script:
- composer install --ignore-platform-reqs
- vendor/bin/grumphp run
- composer test
- composer infection
Expand Down

0 comments on commit 954e7ee

Please sign in to comment.