File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed
Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # Do not edit this file! Make a pull request on changing
2+ # github/workflows/markdown.yaml in
3+ # https://github.com/itk-dev/devops_itkdev-docker if need be.
4+
5+ # ## ## Markdown
6+ # ##
7+ # ## Uses [itkdev/markdownlint](https://hub.docker.com/r/itkdev/markdownlint) to
8+ # ## link all Markdown files (`**/*.md`) in the project.
9+ # ##
10+ # ## [markdownlint-cli configuration ### files](https://github.com/igorshubovych/markdownlint-cli?tab=readme-ov-file#configuration),
11+ # ## `.markdownlint.jsonc` and `.markdownlintignore` control what is actually linted and how.
12+
13+ name : Markdown
14+
15+ on :
16+ pull_request :
17+ push :
18+
19+ jobs :
20+ markdown-lint :
21+ runs-on : ubuntu-latest
22+ strategy :
23+ fail-fast : false
24+ steps :
25+ - name : Checkout
26+ uses : actions/checkout@v4
27+
28+ - run : |
29+ docker run --rm --volume "$PWD":/md itkdev/markdownlint '**/*.md'
You can’t perform that action at this time.
0 commit comments