From c1e48e134b3db89002e5886a2bc40ef9176ba195 Mon Sep 17 00:00:00 2001 From: atteggiani Date: Mon, 29 Apr 2024 17:54:57 +1000 Subject: [PATCH] Temporarily exclude model evaluation files from link checking, before the MED restructuring. --- .github/workflows/lychee-config.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lychee-config.toml b/.github/workflows/lychee-config.toml index 6c889a28b..8b58fa136 100644 --- a/.github/workflows/lychee-config.toml +++ b/.github/workflows/lychee-config.toml @@ -9,8 +9,10 @@ exclude = [ # Exclude these filesystem paths from getting checked. exclude_path = [ - "./docs/fontello", - "./docs/fontawesome*", + "docs/fontello", + "docs/fontawesome*", + "docs/model_evaluation", + "docs/community_resources/community_med", ] # Set verbose level @@ -21,7 +23,7 @@ no_progress = true # Enable link caching. This can be helpful to avoid checking the same links on # multiple runs. -cache = false +cache = true # Discard all cached requests older than this duration. max_cache_age = "3d"