From 0aa4e70653a029d0aa53ab23073e21b680bf03e3 Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Thu, 22 Jul 2021 18:48:40 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2911f4a..b7599d1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,8 +4,18 @@ before_script: - pip install -r requirements.txt stages: + - tests - deploy +pagestests: + stage: tests + script: + - mkdocs build --strict --verbose --site-dir test + artifacts: + paths: + - test + except: + - development pages: stage: deploy script: @@ -14,4 +24,4 @@ pages: paths: - public only: - - master + - development