forked from schmittjoh/serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (33 loc) · 889 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
language: php
git:
depth: 1
cache:
directories:
- $HOME/.composer/cache
- $HOME/.cache/composer
env:
global:
- TARGET=test
matrix:
include:
- php: 7.2
env: PHPUNIT_FLAGS='--coverage-clover clover'
- php: 7.2
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 7.2
env: TARGET=docs
- php: 7.2
env: TARGET=cs
- php: 7.3
- php: 7.4
- php: 7.4
env: VERY_LATEST=1
- php: 8.0snapshot
env: COMPOSER_FLAGS='--ignore-platform-req=php'
fast_finish: true
install:
- if [ -x .travis/install_${TARGET}.sh ]; then .travis/install_${TARGET}.sh; fi;
script:
- if [ -x .travis/script_${TARGET}.sh ]; then .travis/script_${TARGET}.sh; fi;
after_success:
- if [ -x .travis/sucess_${TARGET}.sh ]; then .travis/sucess_${TARGET}.sh; fi;