mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 09:52:38 +02:00
31 lines
353 B
YAML
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
|