Skip to content

Commit 34c99e9

Browse files
committed
Fix build error
1 parent fef43bf commit 34c99e9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/actions/install_python_modules/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)