folder name in the documentation should be the same as in the code (#… #1105
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 Markdown links | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: "0 13 * * 1" # run every Monday at 13:00 UTC | |
jobs: | |
link_check: | |
name: Check Markdown links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/github-action-markdown-link-check@master | |
with: | |
config-file: '.github/linkcheck_config.json' |