Fixing gh actions

This commit is contained in:
Jake Poznanski 2025-04-17 14:32:43 -07:00
parent 8f46b6e966
commit cd79b202ed

View File

@ -39,6 +39,7 @@ runs:
test -d .venv || virtualenv -p $(which python) --copies --reset-app-data .venv test -d .venv || virtualenv -p $(which python) --copies --reset-app-data .venv
. .venv/bin/activate . .venv/bin/activate
pip install -e .[dev] pip install -e .[dev]
pip install -e .[bench]
- if: steps.virtualenv-cache.outputs.cache-hit == 'true' - if: steps.virtualenv-cache.outputs.cache-hit == 'true'
shell: bash shell: bash
@ -46,6 +47,7 @@ runs:
# Set up virtual environment from cache hit. # Set up virtual environment from cache hit.
. .venv/bin/activate . .venv/bin/activate
pip install --no-deps -e .[dev] pip install --no-deps -e .[dev]
pip install --no-deps -e .[bench]
- shell: bash - shell: bash
run: | run: |