Skip to content

Commit

Permalink
Merge pull request #73 from jwagantall/main
Browse files Browse the repository at this point in the history
CI: Add workflow to check for broken links
  • Loading branch information
hendrikebbers authored Jan 21, 2025
2 parents baf5a06 + 7350216 commit ff046a4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check Markdown links

on:
pull_request:
paths:
- '**/*.md'

jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'

0 comments on commit ff046a4

Please sign in to comment.