summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/lint.yml
blob: 1ade17745b4224995c44767f7b8a759b88b33166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: CI

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
        with:
          ruby-version: '3.2'
      - run: gem install mdl
      - run: mdl . --ignore-front-matter -r MD003,MD011,MD023,MD027,MD028,MD035,MD037,MD038,MD039,MD047