Skip to content

Commit 93bde07

Browse files
committed
ci: add markdown link check job
This should prevent us reintroducing broken markdown links. Both relative and absolute links are parsed successfully if they resolve. It does not test "online" (external) links, only those within this repo.
1 parent f5b6f62 commit 93bde07

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,3 +308,12 @@ jobs:
308308
BITCOINFUZZ: "${{ github.workspace}}\\src\\fuzz.exe"
309309
shell: cmd
310310
run: py -3 test\fuzz\test_runner.py --par %NUMBER_OF_PROCESSORS% --loglevel DEBUG %RUNNER_TEMP%\qa-assets\fuzz_seed_corpus
311+
check-md-links:
312+
runs-on: ubuntu-latest
313+
steps:
314+
- name: Checkout
315+
uses: actions/checkout@v4
316+
- name: Markup Link Checker (mlc)
317+
uses: becheran/[email protected]
318+
with:
319+
args: --offline --ignore-path "./doc/release-notes","./doc/README_doxygen.md","./.github","./src/crc32c","./src/crypto","./src/leveldb","./src/minisketch","./src/secp256k1" --root-dir ./ ./

0 commit comments

Comments
 (0)