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

19 lines
268 B
YAML
Raw Normal View History

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.