-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
42 lines (31 loc) · 924 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
dist: trusty
sudo: false
php:
- 7.2
- 7.3
- 7.4
env:
global:
- DEFAULT=1
matrix:
fast_finish: true
include:
- php: 5.6
env: PHPCS=1 DEFAULT=0
- php: 7.1
env: PHPSTAN=5 DEFAULT=0
allow_failures:
- env: PHPSTAN=5 DEFAULT=0
before_script:
- if [[ $DEFAULT = 1 ]]; then composer install; fi
- if [[ $PHPCS = 1 ]]; then composer require cakephp/cakephp-codesniffer:~2.1; fi
- if [[ $PHPSTAN > 0 ]]; then composer require phpstan/phpstan:^0.6; fi
script:
- if [[ $DEFAULT = 1 ]]; then vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi
- if [[ $PHPSTAN > 0 ]]; then vendor/bin/phpstan analyse ./src --level $PHPSTAN; fi
notifications:
email: false
after_success:
- bash <(curl -s https://codecov.io/bash)