forked from netgen/query-translator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
46 lines (37 loc) · 988 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
44
45
46
language: php
cache:
directories:
- vendor
matrix:
# mark as finished before allow_failures are run
fast_finish: true
include:
- php: 5.6
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.0
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.1
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.2
env: CONFIG="phpunit.xml" COVERGAGE="all"
# test only master (+ pull requests)
branches:
only:
- master
# install dependencies
install:
- travis_wait composer install
# execute phpunit as the script command
script:
- ./vendor/bin/phpunit -d memory_limit=-1 --colors -c $CONFIG --coverage-clover=coverage.xml
# disable mail notifications
notification:
email: false
# reduce depth (history) of git checkout
git:
depth: 30
# we don't need sudo
sudo: false
# send coverage to codecov.io
after_success:
- bash <(curl -s https://codecov.io/bash) -F $COVERGAGE