automated-typo3-update/.gitlab-ci.yml
Daniel Siepmann 92c973c7f4
WIP|FEATURE: Integrate gitlab ci
* Provide a way to run php unit functional tests
2017-04-08 22:58:03 +02:00

18 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.