19 lines
268 B
YAML
19 lines
268 B
YAML
|
image: 'composer:latest'
|
||
|
|
||
|
before_script:
|
||
|
- >
|
||
|
composer install
|
||
|
--optimize-autoloader
|
||
|
--no-interaction
|
||
|
--no-ansi
|
||
|
|
||
|
stages:
|
||
|
- test
|
||
|
|
||
|
test:functional:
|
||
|
stage: test
|
||
|
script:
|
||
|
- ./vendor/bin/phpunit
|
||
|
|
||
|
# Further stages, and jobs e.g. linting, cgl, etc.
|