File tree Expand file tree Collapse file tree
.github/actions/install_python_modules Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,18 +14,18 @@ runs:
1414 path : ~/.cache/pypoetry
1515 key : poetry-cache-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ env.POETRY_VERSION }}
1616
17+ - name : Setup Poetry
18+ if : steps.poetry_cache_id.outputs.cache-hit != 'true'
19+ run : curl -sSL https://install.python-poetry.org | python3 -
20+ shell : bash
21+
1722 - name : Cache Poetry Packages
1823 uses : actions/cache@v3
1924 id : poetry_packages_cache_id
2025 with :
2126 path : ~/.local
2227 key : poetry-packages-cache-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ hashFiles('**/poetry.lock') }}
2328
24- - name : Setup Poetry
25- if : steps.poetry_cache_id.outputs.cache-hit != 'true'
26- run : curl -sSL https://install.python-poetry.org | python3 -
27- shell : bash
28-
2929 - name : Install Poetry Packages
3030 if : steps.poetry_packages_cache_id.outputs.cache-hit != 'true'
3131 run : poetry install --no-root
You can’t perform that action at this time.
0 commit comments