-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (34 loc) · 1001 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
38
39
40
41
42
43
language: php
env:
global:
- setup=stable
- DB_USERNAME=root
- DB_PASSWORD=
services:
- mysql
matrix:
fast_finish: true
include:
- php: 7.3
env: COVERAGE=1
- php: 7.3
env: setup=lowest COVERAGE=0
- php: 7.2
env: COVERAGE=1
- php: 7.2
env: setup=lowest COVERAGE=0
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
- mysql -e 'CREATE DATABASE EloquentFormsTest;'
install:
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable --no-suggest; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable --no-suggest; fi
script:
- if [ "$COVERAGE" == "1" ]; then vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [ "$COVERAGE" == "0" ]; then vendor/bin/phpunit; fi
after_success:
- bash <(curl -s https://codecov.io/bash)