From 3fcb36de66b8875488218066cd94c31a3136a58c Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 17 Nov 2023 10:44:06 -0800 Subject: [PATCH] troubleshoot ci --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c223b50..9413a4ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,7 @@ jobs: python -m site python -m pip install --upgrade pip pip install hatch + hatch env create test - name: "Run tests for ${{ matrix.python-version }}" run: hatch run test:no-cov @@ -57,10 +58,13 @@ jobs: - uses: actions/setup-python@v4 with: python-version: 3.11 + - name: "Install doc dependencies" run: | set -xe python -m pip install --upgrade pip pip install hatch + hatch env create docs + - name: "Build docs" run: hatch run docs:build-ci