forked from ChCh/chch_api
d48cf5c579
This reverts commit e2541c84e4
.
27 lines
No EOL
517 B
YAML
27 lines
No EOL
517 B
YAML
language: php
|
|
php:
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
- 7.2
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: 7.1
|
|
- php: 7.2
|
|
- php: hhvm
|
|
|
|
include:
|
|
- php: 5.6
|
|
env: dependencies="--prefer-lowest --prefer-stable"
|
|
|
|
script:
|
|
- vendor/bin/tester tests -s -p php
|
|
|
|
after_failure:
|
|
- for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- composer update --no-interaction --prefer-source $dependencies |