Skip to content
Snippets Groups Projects
.gitlab-ci.yml 616 B
Newer Older
image: python

    - pip3 install --editable .
    - python3 -m unittest discover -s tests -v

documentation:
  stage: build
  before_script:
    - sphinx-apidoc --separate -o docs src/finam
    - sphinx-build -W -b html docs docs/build
    - mv docs/build public/
  artifacts:
    paths:
      - public

pages:
  stage: deploy
  script: "true"
  artifacts:
    paths:
      - public
  only:
    - main