Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Commit

Permalink
work with build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikzogg committed Sep 18, 2016
1 parent 13f8a0b commit 01e55bb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,17 @@ services:
- rabbitmq
- redis-server

matrix:
include:
- php: 7.0
env: dependencies=lowest
- php: 7.0
env: dependencies=highest

before_script:
- composer --prefer-source --dev install
- composer self-update -q
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;

script: phpunit --coverage-text --verbose

0 comments on commit 01e55bb

Please sign in to comment.