30 lines
462 B
YAML
30 lines
462 B
YAML
sudo: false
|
|
|
|
language: php
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache/files
|
|
|
|
env:
|
|
global:
|
|
- deps=""
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 7.1
|
|
- php: 7.2
|
|
env: deps="low"
|
|
|
|
before_install:
|
|
- phpenv config-rm xdebug.ini
|
|
- composer self-update
|
|
|
|
install:
|
|
- if [ "$deps" = "low" ]; then composer update --prefer-lowest --prefer-stable; fi
|
|
- if [ "$deps" = "" ]; then composer install; fi
|
|
|
|
script:
|
|
- vendor/bin/phpspec run
|