diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..50e10ed --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +image: php:7.2-cli +before_script: + - apt-get update + - apt-get install --no-install-recommends -y unzip + - '[[ ! -f composer.phar ]] && curl -sS https://getcomposer.org/installer | php --' + - php composer.phar install + +cache: + paths: + - vendor/ + - composer.phar + +test: + script: + - composer test