From 84050858a53eec5269f2a647ba3848cb76f360f3 Mon Sep 17 00:00:00 2001 From: Wyatt Stanke Date: Wed, 28 Feb 2024 22:09:12 -0500 Subject: [PATCH] Forgot to insstall dependencies --- .github/library/setup/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/library/setup/action.yml b/.github/library/setup/action.yml index 6cba1c3c..033e1557 100644 --- a/.github/library/setup/action.yml +++ b/.github/library/setup/action.yml @@ -32,3 +32,6 @@ runs: with: path: ~/.local key: poetry-local-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/*.yml') }} + - name: Install dependencies + run: poetry install + shell: bash