|
|
@ -21,8 +21,7 @@ runs:
|
|
|
|
uses: actions/cache@v3
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
path: .venv
|
|
|
|
path: .venv
|
|
|
|
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{
|
|
|
|
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{hashFiles('**/poetry.lock') }}
|
|
|
|
hashFiles('**/poetry.lock') }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
- name: Install dependencies
|
|
|
|
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
|
|
|
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
|
|
|
|
run: poetry install --no-interaction --no-root --with test --with dev --all-extras
|
|
|
|
run: poetry install --no-interaction --no-root --with test --with dev --all-extras
|
|
|
|