From 50f70118619b239bb970a97ce2c910291d218e81 Mon Sep 17 00:00:00 2001 From: Florian Rau Date: Tue, 19 Sep 2023 14:56:10 +0100 Subject: [PATCH] fix CI --- .github/workflows/documentation.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index cdc1094d3..ba91cbc07 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -10,9 +10,12 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 + with: + cache: 'pip' + cache-dependency-path: 'pyproject.toml' - name: Install dependencies run: | - pip install -r requirements-dev.txt + pip install --editable .[DEV] - name: Sphinx build run: | sphinx-build docs/source docs/build/html