diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..c0dbdfe90b200b42a712bed51f89ce62141998bc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: alpine + +pages: + script: + - pip install -r requirements.txt + - pip install sphinx + - make html + - mv _build/html/ public/ + artifacts: + paths: + - public + only: + - master +