forked from unzerdev/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·41 lines (41 loc) · 918 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
language: php
matrix:
fast_finish: true
include:
- name: "php 7.1 (install) - unit"
php: 7.1
env:
- DEPS=NO
- LEVEL=UNIT
- name: "php 7.1 (install) - integration"
php: 7.1
env:
- DEPS=NO
- LEVEL=INTEGRATION
- name: "php 7.2 (install) - unit"
php: 7.2
env:
- DEPS=NO
- LEVEL=UNIT
- name: "php 7.3 (install) - unit"
php: 7.3
env:
- DEPS=NO
- LEVEL=UNIT
- name: "php 7.4 (install) - unit"
php: 7.4
env:
- DEPS=NO
- LEVEL=UNIT
cache:
directories:
- $HOME/.composer/cache
- $HOME/.local
before_install:
- ./test/script/travis_before_install.sh
install:
- ./test/script/travis_install.sh
script:
- ./test/script/travis_script.sh
after_success:
- bash <(curl -Ls https://coverage.codacy.com/get.sh) report -l PHP -r build/coverage/xml