streams/vendor/sabre/dav/.travis.yml

34 lines
532 B
YAML
Raw Normal View History

language: php
php:
- 5.5
2014-04-12 17:13:37 +00:00
- 5.6
- 7
2014-04-12 17:13:37 +00:00
- hhvm
matrix:
fast_finish: true
2014-04-12 17:13:37 +00:00
allow_failures:
- php: hhvm
env:
matrix:
- LOWEST_DEPS="" TEST_DEPS=""
- LOWEST_DEPS="--prefer-lowest" TEST_DEPS="tests/Sabre/"
services:
- mysql
sudo: false
cache: vendor
before_script:
- mysql -e 'create database sabredav'
# - composer self-update
- composer update --prefer-source $LOWEST_DEPS
script:
- ./bin/phpunit --configuration tests/phpunit.xml $TEST_DEPS
- ./bin/sabre-cs-fixer fix lib/ --dry-run --diff