Initial import

This commit is contained in:
Iain Learmonth 2022-03-10 14:26:22 +00:00
commit 09f0b0672d
64 changed files with 3735 additions and 0 deletions

21
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,21 @@
image: python:3.8-alpine
test:
stage: test
script:
- pip install -U sphinx sphinx-press-theme
- sphinx-build -b html docs public
rules:
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
pages:
stage: deploy
script:
- pip install -U sphinx sphinx-press-theme
- sphinx-build -b html docs public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == "docs"