Added wiki docs step
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Dominic Grimm 2022-02-16 22:03:03 +01:00
parent f80789b8f0
commit 61618cddaf

View file

@ -9,6 +9,17 @@ steps:
commands:
- cd scripts/
- find -name "*.sh" | xargs shellcheck
- name: markdownlint
image: markdownlint/markdownlint
commands:
- cd docs/
- find -name "*.md" | xargs mdl
- name: docs
image: michaelfbryan/mdbook-docker-image
commands:
- make docs
depends_on:
- markdownlint
---
kind: pipeline