From 23492793c976d3bf7ed5149f7d1ab3fbeebbb5ff Mon Sep 17 00:00:00 2001 From: lucha <lucha@paranoici.org> Date: Tue, 16 Feb 2021 15:39:14 -0800 Subject: [PATCH] added CI for composer --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..eab56264 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +stages: + - test + +test: + stage: test + image: composer:latest + script: + - composer install --prefer-dist --no-ansi --no-progress --no-suggest --no-interaction + cache: + paths: + - vendor/ + - app/ -- GitLab