mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-23 19:58:08 +01:00
27 lines
510 B
YAML
27 lines
510 B
YAML
image: python:3.8-buster
|
|
|
|
before_script:
|
|
- pip install -r requirements.txt
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- mkdocs build --strict --verbose --site-dir test
|
|
artifacts:
|
|
paths:
|
|
- test
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- mkdocs build --strict --verbose
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
when: always
|
|
- if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
|
|
when: manual
|