From 042ec5283f2542526dc577ba0471c3e094ed97b2 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Mon, 4 Nov 2024 14:58:39 -0700 Subject: [PATCH] Update error check in html build --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2e445b3..0b45cf43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,5 +38,6 @@ jobs: run: | # -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 grep -E "ERROR|CRITICAL" html.log