documentation/.gitlab-ci.yml

11 lines
203 B
YAML

stages: [ style ]
default:
interruptible: true
style:
stage: style
image: registry.gitlab.com/pipeline-components/markdownlint:latest
script:
- if [[ $(mdl .) ]]; then true; else false; fi