rocketchat2matrix/.woodpecker.yml
2023-05-20 10:41:41 +02:00

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