diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..0a46716ffa653af8c6bde18c5a9cad0b7f777258 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +image: python:3.7-alpine + +test: + stage: test + script: + - pip install -U sphinx + - sphinx-build -b html . public + only: + - branches + except: + - master + +pages: + stage: deploy + script: + - pip install -U sphinx + - sphinx-build -b html . public + artifacts: + paths: + - public + only: + - master