Initial sbtc docs update #1454
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
# This only works for external links | |
# (local links are already checked in normal build) | |
name: Check Markdown links | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
markdown-link-check: | |
name: Check for broken links | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Run link check | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-verbose-mode: 'yes' | |
folder-path: './' | |
config-file: '.github/workflows/.markdown-link-check_config.json' |