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:
Jean-Michel Picod
2020-02-24 19:00:51 +01:00
parent 292da30cad
commit feacd72d6e
3 changed files with 124 additions and 0 deletions

18
.github/workflows/mdlint.yml vendored Normal file
View 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"