argos/.gitlab-ci.yml
2023-11-22 15:54:37 +01:00

31 lines
353 B
YAML

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