14 lines
325 B
YAML
14 lines
325 B
YAML
pipeline:
|
|
lint-markdown:
|
|
image: markdownlint/markdownlint:latest
|
|
commands:
|
|
- mdl .
|
|
|
|
check-pre-commit:
|
|
image: python:latest
|
|
environment:
|
|
- SKIP=no-commit-to-branch # Ignore "don't commit to protected branch" check
|
|
commands:
|
|
- pip install pre-commit
|
|
- pre-commit run --all-files
|