TNO Intern

Commit 6962025d authored by Arjo Segers's avatar Arjo Segers
Browse files

Initialized configuration to automatically generate documentation.

parent 9725b9c1
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+21 −0
Original line number Diff line number Diff line
# The Docker image that will be used to build your app
image: python:3.11

# Functions that should be executed before the build script is run
before_script:
  - pip install sphinx

stages:
  - deploy-pages

pages:
  stage: deploy-pages
  script:
    - cd doc
    - make html
    - cd ..
    - mkdir public
    - cp -r doc/build/html/* public
  artifacts:
    paths:
      - public