From 9466852f1ddcacca2aa895fe64e6b667f80a10be Mon Sep 17 00:00:00 2001 From: js2264 Date: Wed, 31 Jul 2024 17:41:19 +0200 Subject: [PATCH] ci: fix sphinx conditional --- .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 212fae3..113cb72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,12 +46,12 @@ jobs: Doc: runs-on: ubuntu-latest + needs: Test # This job depends on the setup-python job steps: - name: Buid Sphinx doc if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/devel' }} run: | - sudo apt-get update && sudo apt-get -y install make pip install -e .[dev,docs] make -C docs html