added yml file #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Validates markdown links to check for bad / invalid / broken links. | |
# Uses mlc_config.json in root to configure patterns to ignore etc. | |
# | |
# https://github.com/marketplace/actions/markdown-link-check | |
# | |
name: Check Markdown links | |
# Just running manually and weekly. Can take a few minutes potentially. | |
on: push | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 |