From f5e34ef9997c97c01e1b204907276a7e7690a846 Mon Sep 17 00:00:00 2001 From: Valerio Formato <valerio.formato@cern.ch> Date: Wed, 30 Aug 2023 14:55:00 +0200 Subject: [PATCH] Add a CI/CD pipeline --- .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 0000000..9977207 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +stages: + - build + - deploy + +.build: &build + stage: build + script: + - make html + +build:docker: + <<: *build + image: sphinxdoc/sphinx + needs: [ ] \ No newline at end of file -- GitLab