8613b265d5
Skipping: * MD029 Ordered list item prefix * MD036 Emphasis used instead of a header These rules are not fully applied to this repository yet and further discussion is probably needed on how to deal with them. Example markdownlint run: * https://github.com/Anduin2017/HowToCook/runs/5226805159
18 lines
337 B
YAML
18 lines
337 B
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
markdown:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install packages
|
|
run: sudo gem install mdl
|
|
- name: Lint markdown files
|
|
run: mdl *.md -r ~MD029,~MD036
|