Skip to content

Commit 5ce3eec

Browse files
committed
Debug
1 parent f334f6b commit 5ce3eec

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/actions/python-environment/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,14 @@ runs:
3939
python-version: ${{ inputs.python-version }}
4040
cache: ${{ inputs.use-cache == 'true' && 'poetry' || '' }}
4141

42+
- name: Ensure curl
43+
shell: bash
44+
run: sudo apt update && sudo apt install -y curl
45+
46+
4247
- name: Set up Poetry (${{ inputs.poetry-version }})
4348
shell: bash
44-
run: pipx install poetry==${{ inputs.poetry-version }}
49+
run: curl -sSL https://install.python-poetry.org | POETRY_VERSION=${{ inputs.poetry-version }} python3 -
4550

4651
- name: Poetry install with extras
4752
working-directory: ${{ inputs.working-directory }}

0 commit comments

Comments
 (0)