-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (37 loc) · 844 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
# use [ci skip] or [skip ci] to skip a build in Travis CI
language: php
git:
depth: 5 # default is 50
php:
- '7.0'
- nightly
branches:
except:
- gh-pages
env:
matrix:
- PREFER="update --prefer-source --prefer-lowest --prefer-stable"
- PREFER="update --prefer-source --prefer-stable"
- PREFER="install"
matrix:
allow_failures:
- php: nightly
# see https://docs.travis-ci.com/user/trusty-ci-environment (tl;dr: newer hhvm version)
sudo: required
dist: trusty
group: edge
before_script:
- travis_retry composer self-update
- travis_retry composer $PREFER
script:
- composer test
after_success:
- travis_retry php vendor/bin/coveralls -v
notifications:
irc:
channels:
- chat.freenode.net#honeybee
on_success: always
on_failure: always
use_notice: false
skip_join: false