Update README.md #844
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 Markdown links | |
on: | |
push: | |
branches: [devel, docs/new-website] | |
pull_request: | |
branches: [devel] | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: 'Generate Doxygen and CMake docs' | |
run: | | |
sudo apt-get install -y doxygen | |
./docs/doxygen/generate_docs.bash | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
config-file: ./.github/actions/markdown-check/mlc-config.json |