Skip to content

Commit

Permalink
chore(ci): bust cache
Browse files Browse the repository at this point in the history
  • Loading branch information
tombh committed Sep 7, 2023
1 parent 3cb554a commit 1c0e68b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}-bustme
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --all-extras
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ hashFiles('**/poetry.lock') }}
key: venv-${{ hashFiles('**/poetry.lock') }}-bustme
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --all-extras --with dev
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ hashFiles('**/poetry.lock') }}
key: venv-${{ hashFiles('**/poetry.lock') }}-bustme
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --all-extras
Expand Down

0 comments on commit 1c0e68b

Please sign in to comment.