pgLab/.gitlab-ci.yml
2021-06-04 16:35:08 +00:00

22 lines
319 B
YAML

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