Add poetry cache clear, and small code change

This commit is contained in:
erinhmclark
2025-03-31 11:41:26 +01:00
parent c2821d7c83
commit 8940580638
3 changed files with 7 additions and 4 deletions

View File

@@ -44,6 +44,9 @@ jobs:
~/.cache/pip
key: poetry-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Clear Poetry PyPI cache
run: poetry cache clear pypi --all
- name: Install dependencies from source only
run: poetry install --no-interaction --with dev
env:

View File

@@ -38,6 +38,9 @@ jobs:
~/.cache/pip
key: poetry-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Clear Poetry PyPI cache
run: poetry cache clear pypi --all
- name: Install dependencies from source only
run: poetry install --no-interaction --with dev
env: