From 9305e2c385b0b667f613277c854b5ad784f13ba6 Mon Sep 17 00:00:00 2001 From: JasonGrace2282 Date: Thu, 16 May 2024 15:52:30 -0400 Subject: [PATCH] Fix cache errors in CI This is due to the removed instruction `pipenv install --dev --deploy` which normally created the correct files --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e13ef15..db846503 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,3 +33,7 @@ jobs: - name: Check Pipfile.lock run: bash scripts/check_pipfile.sh + + # Since we don't install dependencies, we have to have this + - name: Make dir for virtualenv + run: mkdir -p $HOME/.local/share/virtualenvs