Skip to content

Commit

Permalink
Fixed CI for Python
Browse files Browse the repository at this point in the history
  • Loading branch information
antoninkriz committed Aug 24, 2023
1 parent 689a82b commit bfeab8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bfeab8e

Please sign in to comment.