File tree 1 file changed +19
-1
lines changed
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 5
5
- 7.2
6
6
- 7.3
7
7
8
+ env :
9
+ global :
10
+ - SETUP=stable
11
+ matrix :
12
+ - LARAVEL=5.7.*
13
+ - LARAVEL=5.8.*
14
+ - SETUP=nightly LARAVEL=5.7.*
15
+ - SETUP=nightly LARAVEL=5.8.*
16
+
17
+ matrix :
18
+ fast_finish : true
19
+ allow_failures :
20
+ - env : SETUP=nightly LARAVEL=5.7.*
21
+ - env : SETUP=nightly LARAVEL=5.8.*
22
+
8
23
sudo : false
9
24
10
25
services :
@@ -14,6 +29,9 @@ before_install:
14
29
- phpenv config-rm xdebug.ini || true
15
30
- printf "\n" | pecl install -f redis
16
31
17
- install : travis_retry composer install --no-interaction --prefer-dist --no-suggest
32
+ install :
33
+ - composer require "laravel/framework=${LARAVEL}" --dev --prefer-dist --no-interaction --no-suggest
34
+ - if [[ $SETUP = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --no-suggest; fi
35
+ - if [[ $SETUP = 'nightly' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest; fi
18
36
19
37
script : vendor/bin/phpunit --verbose
You can’t perform that action at this time.
0 commit comments