From 597a1ca62a466489c034699503c5dbe650d7dfac Mon Sep 17 00:00:00 2001 From: Iain Learmonth Date: Fri, 8 Apr 2022 13:51:19 +0100 Subject: [PATCH] Install deps when building docs --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 528dc95..c94e2e8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,7 @@ image: python:3.8-alpine test: stage: test script: + - pip install -r requirements.txt - pip install -U sphinx sphinx-press-theme - sphinx-build -b html docs public rules: @@ -11,6 +12,7 @@ test: pages: stage: deploy script: + - pip install -r requirements.txt - pip install -U sphinx sphinx-press-theme - sphinx-build -b html docs public artifacts: