Skip to content
Snippets Groups Projects
.gitlab-ci.yml 186 B
image: python:3.8-slim

before_script:
  - pip install -r requirements.txt

pages:
  script:
  - mkdocs build
  - mv _site public
  artifacts:
    paths:
    - public
  only:
  - master