Wiki #61

Merged
dergrimm merged 76 commits from wiki into main 2022-02-23 17:23:49 +00:00
Showing only changes of commit 61618cddaf - Show all commits

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