Files
OpenSK/.github/workflows/mdlint.yml
2020-02-24 19:11:15 +01:00

19 lines
388 B
YAML

name: markdownlint
on: [push]
# 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"