forked from akkaweb/AKKA-CakePHP-CKEditor-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
39 lines (29 loc) · 828 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
language: php
dist: trusty
env:
matrix:
- CAKEPHP=3.4.0
- CAKEPHP=3.5.0
- CAKEPHP=3.6.0
sudo: false
php:
- '5.6'
- '7.0'
- '7.1'
matrix:
fast_finish: true
include:
- php: 7.0
env: PHPCS=1
allow_failures:
- env: PHPCS=1
before_script:
- if [[ $PHPCS = 1 ]]; then composer require cakephp/cakephp-codesniffer:^3.0; fi
- if [[ $PHPCS != 1 ]]; then composer require cakephp/cakephp:~$CAKEPHP; fi
- if [[ $PHPCS != 1 ]]; then composer install; fi
- if [[ $PHPCS != 1 ]]; then composer require phpunit/phpunit:"^5.7|^6.0"; fi
script:
- if [[ $PHPCS != 1 ]]; then vendor/bin/phpunit; fi
- if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./config ./webroot; fi
notifications:
email: false