Add workflow to check README for broken links #1
Workflow file for this run
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
name: Check README Links | |
on: [push, workflow_dispatch] | |
jobs: | |
check_links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install linkchecker | |
run: sudo apt-get install -y linkchecker | |
- name: Check for broken links in README | |
run: linkchecker --no-warnings --no-status --check-extern README.md |