You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
609 B
30 lines
609 B
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: Markdown Lint
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**.md"
|
|
- .github/workflows/markdown-lint.yml
|
|
pull_request:
|
|
paths:
|
|
- "**.md"
|
|
- .github/workflows/markdown-lint.yml
|
|
|
|
env:
|
|
dotnetVersion: "6.0.x"
|
|
|
|
jobs:
|
|
markdownlint:
|
|
name: Markdown Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Lint Markdown Files
|
|
uses: DavidAnson/markdownlint-cli2-action@v5
|
|
with:
|
|
globs: |
|
|
**.md
|
|
!src/**
|