forked from netgen/NetgenRemoteMediaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (42 loc) · 1.14 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
51
52
53
language: php
# cache directories
cache:
directories:
- vendor
- $HOME/.composer/cache/files
matrix:
# mark as finished before allow_failures are run
fast_finish: true
include:
- php: 7.0
- php: 7.1
- php: 7.2
# test only master (+ pull requests)
branches:
only:
- master
- 1.1-release
# make sure to update composer to latest available version
before_install:
- composer self-update
- phpenv config-add travis.php.ini
# install dependencies
install:
- travis_wait composer install --no-interaction --no-progress --prefer-dist
# execute phpunit as the script command
script:
- ./vendor/bin/phpunit -d memory_limit=-1 --colors -c phpunit.xml.dist --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)