forked from ovr/phpsa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (27 loc) · 687 Bytes
/
.travis.yml
File metadata and controls
35 lines (27 loc) · 687 Bytes
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:
- 7.0
- 7.1
- 7.2
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
# Disabled via unexpected fail on TravisCI
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer self-update --quiet
- COMPOSER_DISCARD_CHANGES=true composer --prefer-source update --no-interaction --no-progress
script:
- make ci
after_script:
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
notifications:
email: false