mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 14:02:22 -05:00
18 lines
285 B
YAML
18 lines
285 B
YAML
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"
|