aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linkcheck.yml
blob: e97f01e8f9ed120ea59e2bc0a271efbfd381fe36 (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@v3
      - name: md-linkcheck
        uses: gaurav-nelson/github-action-markdown-link-check@v1
        with:
          use-quiet-mode: 'yes'
          config-file: '.github/.markdownlinkcheck.json'