mirror of
https://github.com/linux-msm/qdl.git
synced 2026-02-25 13:12:25 -08:00
Add Markdown linter invocation for new pull requests for README.md. This is using existing GitHub action from [1]. [1] https://github.com/DavidAnson/markdownlint-cli2-action Signed-off-by: Igor Opaniuk <igor.opaniuk@oss.qualcomm.com>
12 lines
224 B
YAML
12 lines
224 B
YAML
name: Markdown Lint
|
|
on: [pull_request]
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: DavidAnson/markdownlint-cli2-action@v20
|
|
with:
|
|
globs: |
|
|
README.md
|