Skip to content

Merge pull request #379 from Crivella/fix-entrypoint_doc #1110

Merge pull request #379 from Crivella/fix-entrypoint_doc

Merge pull request #379 from Crivella/fix-entrypoint_doc #1110

---
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: MarkDown linting
on: [push, pull_request] # yamllint disable-line rule:truthy
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: MarkdownLint
uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265 # v19.1.0
with:
# allow duplicate subsections, see https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md
siblings_only: true
# all markdown, except filter out {demos,version-specific}/* for now, until we fix issues in those sections
globs: |
**/*.md
#docs/demos
#docs/version-specific