From 6f3ebcb689e2a297fa700543198e78d484641c15 Mon Sep 17 00:00:00 2001 From: Achilleas Pipinellis Date: Tue, 5 Apr 2016 21:19:30 +0300 Subject: [PATCH] Add a test job --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0bbc33f..18f033c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,18 @@ image: ruby:2.3 +test: + stage: test + script: + - gem install jekyll + - jekyll build -d test + artifacts: + paths: + - test + except: + - master + pages: + stage: deploy script: - gem install jekyll - jekyll build -d public