From eb3ded4762901c290c376878a1a2d68007ee2c90 Mon Sep 17 00:00:00 2001 From: Malin Freeborn <malinfreeborn@posteo.net> Date: Fri, 27 Jan 2023 12:11:37 +0100 Subject: [PATCH] add pipeline to test and produce docs --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..e6648471 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +compile_pdf: + image: ctornau/latex + script: + - apt-get update -y + - apt-get install -y inkscape make + - make test + - make docs + only: + - master + - run + artifacts: + paths: + - docs.pdf -- GitLab