baikal/.travis.yml

50 lines
994 B
YAML
Raw Normal View History

language: php
2017-10-09 16:29:52 -04:00
dist: trusty
php:
2020-02-17 04:23:57 -05:00
- 7.0
- 7.1
2018-04-18 14:45:23 -04:00
- 7.2
- 7.3
2020-02-17 04:23:57 -05:00
- 7.4
matrix:
fast_finish: true
env:
2020-02-17 10:41:22 -05:00
global:
- RUN_PHPSTAN="FALSE"
matrix:
- PREFER_LOWEST=""
- PREFER_LOWEST="--prefer-lowest"
2020-02-17 10:41:22 -05:00
install:
- if [ $RUN_PHPSTAN == "TRUE" ]; then composer require --dev phpstan/phpstan:^0.12; fi
matrix:
include:
- name: 'PHPStan'
php: 7.4
env:
- RUN_PHPSTAN="TRUE"
fast_finish: true
services:
- mysql
sudo: false
before_script:
# - mysql -e 'create database sabredav'
2016-03-17 09:34:42 -04:00
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
# - composer self-update
- composer update $PREFER_LOWEST
script:
2020-02-17 10:41:22 -05:00
- if [ $RUN_PHPSTAN == "FALSE" ]; then find Core -name "*.php" | xargs -n1 php -l; fi
- if [ $RUN_PHPSTAN == "FALSE" ]; then ./vendor/bin/sabre-cs-fixer fix . --dry-run --diff; fi
- if [ $RUN_PHPSTAN == "TRUE" ]; then php vendor/bin/phpstan.phar analyse Core html; fi
2016-04-01 17:03:40 -04:00
cache:
directories:
- $HOME/.composer/cache