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