We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6af42c2 commit 89824dfCopy full SHA for 89824df
.github/actions/python-environment/action.yml
@@ -31,15 +31,9 @@ runs:
31
- name: Setup up pipx if not present
32
shell: bash
33
run: |
34
- if ! command -v pipx >/dev/null 2>&1; then
35
- echo "install pipx"
36
- python -m pip install --upgrade pip
37
- python -m pip install pipx
38
- pipx ensurepath
39
- echo "$Home/.local/bin" >> $GITHUB_PATH
40
- else
41
- echo "pipx is present"
42
- fi
+ python3 m pip install --upgrade pipx
+ pipx ensurepath
+ echo "$Home/.local/bin" >> $GITHUB_PATH
43
44
45
- name: Setup Poetry (${{ inputs.poetry-version }})
0 commit comments