-
Notifications
You must be signed in to change notification settings - Fork 16
/
.travis.yml
35 lines (28 loc) · 823 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
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
sudo: false
matrix:
include:
- php: 7.0
env: setup=stable
fast_finish: true
install:
- composer install
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --access-token="53c569dececa0578c84587178c5f08e25df8c6e42c37bd313bf0802d2cf74a71" --format=php-clover coverage.clover
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/cf4cb46c56710f9fc4f8
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
email: