Skip to content

Commit

Permalink
allow failures on 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alcohol committed Apr 14, 2019
1 parent 74ef320 commit 37e4db2
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,37 @@ sudo: false

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

git:
depth: 5

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- nightly
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- nightly

matrix:
include:
- dist: precise
php: 5.3
- dist: precise
php: 5.3
fast_finish: true
allow_failures:
- php: nightly
- php: nightly
- php: 7.4snapshot

before_script:
- composer install --no-interaction --no-progress --prefer-dist --ansi
- composer install --no-interaction --no-progress --prefer-dist --ansi

script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
- vendor/bin/phpunit --coverage-clover=coverage.xml

after_success:
- bash <(curl -s https://codecov.io/bash)
- bash <(curl -s https://codecov.io/bash)

0 comments on commit 37e4db2

Please sign in to comment.