banker/.gitlab-ci.yml

29 lines
711 B
YAML
Raw Normal View History

2017-01-17 11:28:13 -05:00
# Composer stores all downloaded packages in the vendor/ directory.
# Do not use the following if the vendor/ directory is commited to
# your git repository.
cache:
paths:
- vendor/
services:
- memcached:latest
2017-01-17 11:28:13 -05:00
- redis:latest
test:7:
before_script:
- bash build/docker_install.sh > /dev/null
2017-01-17 11:28:13 -05:00
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --no-dev
image: php:7
script:
- phpunit -c build
test:7.1:
before_script:
- bash build/docker_install.sh > /dev/null
2017-01-17 11:28:13 -05:00
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --no-dev
image: php:7.1
script:
- phpunit -c build