From 711d29d25a309c3b6d109a12116c58f1c00b0c7c Mon Sep 17 00:00:00 2001 From: Alexander Alemayhu Date: Thu, 2 Jan 2020 13:29:08 +0100 Subject: [PATCH] github: add action for checking the markdown links This should hopefully capture any broken links or invalid urls. Reference: https://github.com/marketplace/actions/markdown-link-check --- .github/workflows/check-links.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/check-links.yml diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml new file mode 100644 index 0000000..da49e02 --- /dev/null +++ b/.github/workflows/check-links.yml @@ -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/github-action-markdown-link-check@0.4.0