From 9d65f10d4c7dad5cbd7cda5b325cbeb111638078 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Mon, 4 Nov 2024 15:00:56 -0700 Subject: [PATCH] Update error check in html build --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b45cf43..ce4a9f2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,5 +39,5 @@ jobs: # -W is too noisy as it treats all warnings as errors and we have a lot of warnings # SPHINXOPTS='-W --keep-going' make html cd docs - make html 2>&1 > html.log + make html >html.log 2>&1 grep -E "ERROR|CRITICAL" html.log