automated-typo3-update/.gitlab-ci.yml

20 lines
313 B
YAML

image: 'composer:latest'
before_script:
- apk add --no-cache make
- >
composer install
--optimize-autoloader
--no-interaction
--no-ansi
- make install
stages:
- test
test:functional:
stage: test
script:
- ./vendor/bin/phpunit
# Further stages, and jobs e.g. linting, cgl, etc.