Add link check action. ()

* Add link check action.

Signed-off-by: Jerome Luckenbach <github@luckenba.ch>

* Add blank line.

Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
pull/1450/head
Jerome Luckenbach 2021-01-13 19:33:39 +01:00 committed by GitHub
parent e3bcef123a
commit 5cfab1afb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions
.github/workflows

18
.github/workflows/brokenLinkCheck.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Check for broken links
# https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/
on:
push:
branches:
- main
jobs:
markdown-link-check:
name: Check for broken links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1