From 49396376977dde105f7c874dd0d82768f3000e46 Mon Sep 17 00:00:00 2001 From: Agrin Hilmkil Date: Mon, 13 May 2024 13:14:04 +0000 Subject: [PATCH] Run make html in poetry env --- .github/workflows/sphinx-build.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/sphinx-build.yml b/.github/workflows/sphinx-build.yml index a31c89f..7b606d0 100644 --- a/.github/workflows/sphinx-build.yml +++ b/.github/workflows/sphinx-build.yml @@ -55,20 +55,12 @@ jobs: poetry install --with dev if: steps.cache.outputs.cache-hit != 'true' - - name: Verify pre-commit checks - uses: pre-commit/action@v3.0.0 - with: - extra_args: --all-files - - - name: Test with pytest - run: poetry run python -m pytest ./test - - name: Setup Pages id: pages uses: actions/configure-pages@v5 - name: Build docs with Sphinx - run: make html + run: poetry run make html working-directory: docs - name: Upload docs