From 906b58f2d37f9f6d32228a225630193bd292f9be Mon Sep 17 00:00:00 2001 From: Yifan Zhao <yifanz16@illinois.edu> Date: Fri, 26 Mar 2021 20:03:38 +0000 Subject: [PATCH] Set up .gitlab-ci.yml for sphinx automation --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000..1fcc749cc9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,7 @@ +image: python:3.7-alpine + +build_sphinx: + stage: build + script: + - pip install -U sphinx sphinx-autodoc-typehints sphinx-rtd-theme numpydoc + - sphinx-build -b html . public -- GitLab