Skip to content

Commit

Permalink
check remove cached env
Browse files Browse the repository at this point in the history
  • Loading branch information
froukje committed Jun 6, 2024
1 parent ffaf725 commit 040d7e0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/style-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
virtualenvs-in-project: true

# Allow loading a cached venv created in a previous run if the lock file is identical
- name: Load cached venv if it exists
id: venv-cache
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }}
#- name: Load cached venv if it exists
# id: venv-cache
# uses: actions/cache@v3
# with:
# path: .venv
# key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }}

- name: Install dependencies

#if: steps.venv-cache.outputs.cache-hit != 'true'
run: poetry install --no-interaction

- name: Check format with black
Expand Down

0 comments on commit 040d7e0

Please sign in to comment.