From 4f5cef57251a8e89e8e1f91e959fb861292c7934 Mon Sep 17 00:00:00 2001 From: Luke Hsiao Date: Thu, 10 Aug 2023 23:21:24 -0600 Subject: [PATCH] build(Justfile): add `link-check` target Signed-off-by: Luke Hsiao --- Justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Justfile b/Justfile index 3d96015..00e2c92 100644 --- a/Justfile +++ b/Justfile @@ -7,6 +7,10 @@ _default: check: cargo clippy --locked -- -D warnings +# Check links in markdown files +link-check: + -lychee -E '**/*.md' + # Runs nextest test: cargo nextest run