From cd79b202ed00b6cd46f99ceadc0c27cf0f4483ec Mon Sep 17 00:00:00 2001 From: Jake Poznanski Date: Thu, 17 Apr 2025 14:32:43 -0700 Subject: [PATCH] Fixing gh actions --- .github/actions/setup-venv/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/setup-venv/action.yml b/.github/actions/setup-venv/action.yml index b83ff2d..7d91a2e 100644 --- a/.github/actions/setup-venv/action.yml +++ b/.github/actions/setup-venv/action.yml @@ -39,6 +39,7 @@ runs: test -d .venv || virtualenv -p $(which python) --copies --reset-app-data .venv . .venv/bin/activate pip install -e .[dev] + pip install -e .[bench] - if: steps.virtualenv-cache.outputs.cache-hit == 'true' shell: bash @@ -46,6 +47,7 @@ runs: # Set up virtual environment from cache hit. . .venv/bin/activate pip install --no-deps -e .[dev] + pip install --no-deps -e .[bench] - shell: bash run: |