Skip to content

Commit

Permalink
github: add action for checking the markdown links
Browse files Browse the repository at this point in the history
This should hopefully capture any broken links or invalid urls.

Reference: https://github.com/marketplace/actions/markdown-link-check
  • Loading branch information
aalemayhu committed Jan 2, 2020
1 parent 0b2bf16 commit 711d29d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Check Markdown links

on: push

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- uses: gaurav-nelson/[email protected]

0 comments on commit 711d29d

Please sign in to comment.