automated-typo3-update/.gitlab-ci.yml
Daniel Siepmann bd3e6b080d
BUGFIX: Finish installation / setup on gitlab ci
* Install PHPCS Standard to execute with tests
2017-04-08 23:07:26 +02:00

19 lines
285 B
YAML

image: 'composer:latest'
before_script:
- >
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.