Add Github workflows
These should do the checks for us. Not an expert though so it may need a bit of tweaking before they do what we want them to do.
This commit is contained in:
18
.github/workflows/mdlint.yml
vendored
Normal file
18
.github/workflows/mdlint.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
name: markdownlint
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**/*.md'
|
||||
- '.markdownlint.json'
|
||||
- '!third_party/**'
|
||||
|
||||
jobs:
|
||||
pylint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: markdownlint-cli
|
||||
uses: nosborn/github-action-markdown-cli@v1.1.1
|
||||
with:
|
||||
files: **/*.md
|
||||
config_file: ".markdownlint.json"
|
||||
Reference in New Issue
Block a user