forked from laravel/horizon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (29 loc) · 855 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: php
php:
- 7.1
- 7.2
- 7.3
env:
global:
- SETUP=stable
matrix:
- LARAVEL=5.7.*
- LARAVEL=5.8.*
- SETUP=nightly LARAVEL=5.7.*
- SETUP=nightly LARAVEL=5.8.*
matrix:
fast_finish: true
allow_failures:
- env: SETUP=nightly LARAVEL=5.7.*
- env: SETUP=nightly LARAVEL=5.8.*
sudo: false
services:
- redis-server
before_install:
- phpenv config-rm xdebug.ini || true
- printf "\n" | pecl install -f redis
install:
- composer require "laravel/framework=${LARAVEL}" --dev --prefer-dist --no-interaction --no-suggest
- if [[ $SETUP = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --no-suggest; fi
- if [[ $SETUP = 'nightly' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest; fi
script: vendor/bin/phpunit --verbose