From 4e3d87e9b867e4a023aa92c2a215f871cba91b39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mas=C3=B3?= Date: Thu, 25 Jun 2026 15:30:01 +0200 Subject: [PATCH] Documentation: Check links only i running in CI --- docs/make.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index c7f8373..3cf188d 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -34,7 +34,7 @@ makedocs( ), checkdocs = :none, warnonly = false, - linkcheck = true, + linkcheck = get(ENV, "CI", "false") == "true", # check links only if running in ci linkcheck_ignore = [r"^mailto:"], )