-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (28 loc) · 729 Bytes
/
.travis.yml
File metadata and controls
33 lines (28 loc) · 729 Bytes
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
language: php
php:
- 7.3
- 7.4
env:
- LARAVEL_VERSION=8.2.0
- LARAVEL_VERSION=8.1.0
- LARAVEL_VERSION=8.0.1
- LARAVEL_VERSION=7.28.0
- LARAVEL_VERSION=7.6.0
- LARAVEL_VERSION=7.0.0
- LARAVEL_VERSION=6.18.8
- LARAVEL_VERSION=6.8.0
- LARAVEL_VERSION=6.5.2
- LARAVEL_VERSION=5.8.35
- LARAVEL_VERSION=dev-master
- LARAVEL_VERSION=
matrix:
fast_finish: true
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
- if [ "$LARAVEL_VERSION" != "" ]; then composer require --dev "laravel/laravel:${LARAVEL_VERSION}" --no-update; fi;
- composer update
script:
- vendor/bin/phpunit
after_script:
# - php vendor/bin/php-coveralls -v