1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-12-03 22:59:07 +02:00

feat(docs): add markdown linter for exercises README.md files

This commit is contained in:
Ali Afsharzadeh
2023-03-30 19:53:22 +03:30
parent 362c1b0d11
commit 382e16eb7e
9 changed files with 36 additions and 11 deletions

18
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DavidAnson/markdownlint-cli2-action@v9
with:
globs: "exercises/**/*.md"