Skip to content

Commit

Permalink
Github Action to check links in documentation (#324)
Browse files Browse the repository at this point in the history
* add github add to check md link

* Only run under `mkdocs/**`

* ws

* make lint

---------

Co-authored-by: Fokko Driesprong <[email protected]>
  • Loading branch information
kevinjqliu and Fokko authored Feb 29, 2024
1 parent afd7bf2 commit a1c6a5a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check-md-link.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Check Markdown links

on:
push:
paths:
- mkdocs/**

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1

0 comments on commit a1c6a5a

Please sign in to comment.