aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linkcheck.yml
blob: 2dcc5c90eacc5d7989d5ea1c92fd28f92387995c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Linkcheck
on: [push, pull_request]

jobs:
  markdown-link-check:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: md-linkcheck
        uses: gaurav-nelson/github-action-markdown-link-check@v1
        with:
          use-quiet-mode: 'yes'
          config-file: '.github/.markdownlinkcheck.json'