2017-04-08 22:49:00 +02:00
|
|
|
image: 'composer:latest'
|
|
|
|
|
|
|
|
before_script:
|
2017-04-08 23:10:59 +02:00
|
|
|
- apk add --no-cache make
|
2017-04-08 22:49:00 +02:00
|
|
|
- >
|
|
|
|
composer install
|
|
|
|
--optimize-autoloader
|
|
|
|
--no-interaction
|
|
|
|
--no-ansi
|
2017-04-08 23:07:26 +02:00
|
|
|
- make install
|
2017-04-08 22:49:00 +02:00
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
|
|
|
|
test:functional:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- ./vendor/bin/phpunit
|
|
|
|
|
|
|
|
# Further stages, and jobs e.g. linting, cgl, etc.
|