forked from jkocik/laravel-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (20 loc) · 714 Bytes
/
.travis.yml
File metadata and controls
25 lines (20 loc) · 714 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
language: php
php:
- 7.1
- 7.2
- 7.3
services:
- redis-server
before_script:
- composer install --no-interaction
script:
- vendor/bin/phpunit -c phpunit-laravel-52.xml
- vendor/bin/phpunit -c phpunit-laravel-53.xml
- vendor/bin/phpunit -c phpunit-laravel-54.xml
- vendor/bin/phpunit -c phpunit-laravel-55.xml
- vendor/bin/phpunit -c phpunit-laravel-56.xml
- vendor/bin/phpunit -c phpunit-laravel-57.xml
- vendor/bin/phpunit -c phpunit-laravel-58.xml
- if [[ ${TRAVIS_PHP_VERSION:0:3} != "7.1" ]]; then vendor/bin/phpunit -c phpunit-laravel-6.xml --coverage-clover build/logs/clover.xml; fi
after_success:
- travis_retry php vendor/bin/php-coveralls -v