blob: 48c88b169417f6b664944507112810416a867ea1 (
plain) (
blame)
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
|
language: php
php:
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
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
|