WIP|FEATURE: Integrate gitlab ci

* Provide a way to run php unit functional tests
This commit is contained in:
Daniel Siepmann 2017-04-08 22:49:00 +02:00
parent 64bcf4fa72
commit 92c973c7f4
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

18
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,18 @@
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.