From 361dad5c227b79293218d117f154fc741dcd529f Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Mon, 4 Nov 2024 14:29:30 -0700 Subject: [PATCH] Add html build to ci --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd602048..0ff06f99 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,3 +33,7 @@ jobs: for schema_f in schema/vrs/json/*; do python -c "import json, jsonschema; jsonschema.Draft202012Validator.check_schema(json.load(open('$schema_f')))" done + + - name: Build HTML + run: | + SPHINXOPTS='-W --keep-going' make html