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.