From 92c973c7f4dd14dc58de7c826738082fc9e18548 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Sat, 8 Apr 2017 22:49:00 +0200 Subject: [PATCH] WIP|FEATURE: Integrate gitlab ci * Provide a way to run php unit functional tests --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..3ff7b80 --- /dev/null +++ b/.gitlab-ci.yml @@ -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.