From bfeab8e77f6b1f5e219eb1d97ab74da3a4a63690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=C3=ADn=20K=C5=99=C3=AD=C5=BE?= <15214494+antoninkriz@users.noreply.github.com> Date: Thu, 24 Aug 2023 17:59:20 +0200 Subject: [PATCH] Fixed CI for Python --- .github/actions/setup/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 59264fa..039e637 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -27,15 +27,17 @@ runs: id: cached-dependencies uses: actions/cache@v3 with: - path: .venv + path: kos-loader/.venv key: python-${{ inputs.python-version }}-poetry-${{ inputs.poetry-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/actions/setup/action.yml') }} - name: Install dependencies + working-directory: kos-loader if: steps.cached-dependencies.outputs.cache-hit != 'true' shell: bash run: poetry install --no-interaction --no-root - name: Install library + working-directory: kos-loader shell: bash run: poetry install --no-interaction \ No newline at end of file