forked from cakephp/phinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (33 loc) · 993 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
sudo: false
language: php
addons:
postgresql: "9.2"
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
env:
global:
- COMPOSER_FLAGS=--prefer-lowest
- DEFAULT=1
matrix:
include:
- php: 7
env: PHPCS=1 DEFAULT=0
- php: 7
env: PHPSTAN=1 DEFAULT=0
before_script:
- travis_retry composer update --no-interaction --prefer-stable ${COMPOSER_FLAGS}
- mysql -e 'create database phinx_testing;'
- psql -c 'create database phinx_testing;' -U postgres
script:
- if [[ $DEFAULT = 1 ]]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
- if [[ $PHPSTAN = 1 ]]; then composer require --dev phpstan/phpstan:^0.8 && vendor/bin/phpstan analyse -c phpstan.neon -l 4 src; fi
- if [[ $PHPCS = 1 ]]; then composer require --dev squizlabs/php_codesniffer:~3.1.1 && vendor/bin/phpcs -p -s src; fi
after_success:
- if [[ $DEFAULT = 1 ]]; then bash <(curl -s https://codecov.io/bash); fi
notifications:
email: false