We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4164bc9 commit 30f7540Copy full SHA for 30f7540
1 file changed
.travis.yml
@@ -1,12 +1,14 @@
1
language: php
2
sudo: false
3
-php:
4
- - 7.0
5
- - 7.1
6
-
7
-before_script: composer install -o --dev --no-interaction
8
-script:
+matrix:
+ include:
+ - php: 7.0
+ - php: 7.1
+ fast_finish: true
+before_script:
9
- mkdir -p build/logs
10
- - phpunit
+ - composer update --prefer-dist --prefer-lowest --prefer-stable
11
+script:
12
+ - vandor/bin/phpunit
13
after_success:
14
- travis_retry php vendor/bin/coveralls
0 commit comments