From 42dfcd838f191ba7cb11623b704fe392fc4b2f71 Mon Sep 17 00:00:00 2001 From: Mark Bonicillo Date: Wed, 23 Aug 2023 16:24:56 -0700 Subject: [PATCH] HYP-342 Update GH Workflows --- .github/workflows/ci.yml | 7 +++++++ .github/workflows/documentation.yml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd4246d0..b8826ea6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,3 +59,10 @@ jobs: - name: Run tests run: | make test-ci-github + - name: Install documentation dependencies + run: | + pip install sphinx sphinx_rtd_theme + pip install .'[documentation]' + - name: Check documentation build + run: | + sphinx-build docs/source _build diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 1e795668..745e289a 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -1,5 +1,5 @@ name: Docs -on: [push, pull_request, workflow_dispatch] +on: [push, workflow_dispatch] permissions: contents: write jobs: