argos/.gitlab-ci.yml

26 lines
302 B
YAML

image: python:3.11
stages:
- test
- deploy
before_script:
- make install
pytest:
stage: test
script:
- make tests
pages:
stage: deploy
script:
- pwd
- ls
- make docs
artifacts:
paths:
- public/
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH