-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
50 lines (39 loc) · 1.02 KB
/
.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
47
48
49
50
language: php
# directories to cache
cache:
directories:
- vendor
- $HOME/.composer/cache
matrix:
# mark as finished before allow_failures are run
fast_finish: true
include:
- php: 7.2
- php: 7.3
# test only master (+ pull requests)
branches:
only:
- master
# make sure to update composer to latest available version
before_install:
- phpenv config-add travis.php.ini
# install dependencies
install:
- travis_wait composer install
# execute phpunit as the script command
script:
- ./vendor/bin/phpunit -d memory_limit=-1 --colors -c phpunit.xml --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
# enable scrutinizer
after_script:
- wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover
# send coverage to codecov.io
after_success:
- bash <(curl -s https://codecov.io/bash)