pip prod(deps): bump tox from 3.25.0 to 3.28.0 #1455
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: Dead Link Checker | |
on: | |
pull_request: | |
concurrency: | |
group: dlc-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
CheckDeadLinks: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo npm install -g markdown-link-check | |
- run: | | |
for file in $(find . -name "*.md"); do | |
markdown-link-check -c .dlc.json -q "$file" | |
done |