From 279c4df741a7950bb88e5a2ab9f565eaaa511597 Mon Sep 17 00:00:00 2001 From: James Harris Date: Sun, 14 Jun 2020 20:41:35 +0100 Subject: [PATCH] ci: check links in markdown are not dead --- .github/workflows/markdownlinks.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/markdownlinks.yaml diff --git a/.github/workflows/markdownlinks.yaml b/.github/workflows/markdownlinks.yaml new file mode 100644 index 0000000..f890484 --- /dev/null +++ b/.github/workflows/markdownlinks.yaml @@ -0,0 +1,8 @@ +name: Check Markdown links +on: push +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1