Manual start

This commit is contained in:
Eelke Klein 2021-06-04 16:35:08 +00:00
parent 97b24a8bf3
commit 19d92c5236
5 changed files with 99 additions and 0 deletions

22
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,22 @@
image: python:3.7-alpine
test-docs:
stage: test
script:
- pip install -U sphinx
- sphinx-build -b html docs public
only:
- branches
except:
- master
pages:
stage: deploy
script:
- pip install -U sphinx
- sphinx-build -b html docs public
artifacts:
paths:
- public
only:
- master