Skip to content

Commit

Permalink
Improve Travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilkybarkid committed Mar 12, 2016
1 parent b425c93 commit 845897f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ php:
- 7.0
- hhvm

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

matrix:
fast_failure: true
include:
Expand All @@ -27,6 +31,6 @@ before_install:
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony:$SYMFONY_VERSION; fi

install:
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-stable --prefer-source --no-interaction; else composer update --prefer-source --no-interaction; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction; else composer update --prefer-dist --no-interaction; fi;

script: ./vendor/bin/phpunit --coverage-text

0 comments on commit 845897f

Please sign in to comment.