diff options
Diffstat (limited to '.github/workflows/check-md-links.yml')
-rw-r--r-- | .github/workflows/check-md-links.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/check-md-links.yml b/.github/workflows/check-md-links.yml new file mode 100644 index 0000000..f55b468 --- /dev/null +++ b/.github/workflows/check-md-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 + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + config-file: '.github/mlc_config.json' |