forked from csarrazi/CsaGuzzleBundle
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
47 lines (39 loc) · 825 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
47
language: php
matrix:
include:
- php: 7.1
env: deps=low
- php: 7.2
env: deps=low
- php: 7.3
env: deps=low
- php: 7.1
- php: 7.2
- php: 7.3
fast_finish: true
install:
- composer self-update -q
- if [ "$deps" = "no" ]; then composer --prefer-stable --prefer-dist -n update; fi;
- if [ "$deps" = "low" ]; then composer --prefer-lowest -n --prefer-stable --prefer-dist update; fi;
env:
global:
- SYMFONY_DEPRECATIONS_HELPER=strict
- deps=no
script:
./vendor/bin/phpunit
sudo: false
cache:
directories:
- node_modules
- $HOME/.composer/cache/files
webhooks:
urls:
- https://webhooks.gitter.im/e/31edf9087439c96470f5
on_success: change
on_failure: always
on_start: false
branches:
except:
- /^feat.*/
- /^bug.*/
- /^fix.*/