forked from slevomat/coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
24 lines (24 loc) · 819 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
language: php
matrix:
include:
- php: 7.1
env: DEPENDENCIES=lowest
- php: 7.1
env: DEPENDENCIES=highest
- php: 7.2
env: DEPENDENCIES=lowest
- php: 7.2
env: DEPENDENCIES=highest
cache:
directories:
- $HOME/.composer/cache
before_script:
- composer self-update
- if [ "${DEPENDENCIES}" = "lowest" ]; then composer update --prefer-lowest --prefer-dist --no-interaction --no-progress; fi;
- if [ "${DEPENDENCIES}" = "highest" ]; then composer update --prefer-dist --no-interaction --no-progress; fi;
script:
- bin/phing
after_script:
- if [ "${TRAVIS_ALLOW_FAILURE}" = false ]; then wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar && php coveralls.phar --verbose --config build/coveralls.yml; fi
notifications:
email: false