Add markdown link check to CI (#34)

This commit is contained in:
Zach Wasserman 2020-11-12 18:20:30 -08:00 committed by GitHub
parent 89c775dd95
commit ebd355c52c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
.github/workflows/docs.yml vendored Normal file
View file

@ -0,0 +1,10 @@
name: Check Documentation
on: [push, pull_request]
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1