documentation/.gitlab-ci.yml

11 lines
178 B
YAML

stages: [ style ]
default:
image: markdownlint/markdownlint:0.13.0
interruptible: true
style:
stage: style
script:
- if [[ $(mdl .) ]]; then true; else false; fi