Update tools and packaging conveners with e-mails 2025 #3043
This file contains hidden or 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, pull_request] | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Ruby Install | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| - name: Jekyll Build | |
| run: bundler exec jekyll build | |
| - name: Check Links | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| config-file: '.github/config/mdcheck.json' | |
| check-modified-files-only: 'yes' | |
| use-verbose-mode: 'yes' | |
| base-branch: 'main' |