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 5413798 commit 6af42c2Copy full SHA for 6af42c2
.github/actions/python-environment/action.yml
@@ -32,15 +32,19 @@ runs:
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
- pipx ensurepath
43
+
44
45
- name: Setup Poetry (${{ inputs.poetry-version }})
46
47
pipx install poetry==${{ inputs.poetry-version }}
- echo "$Home/.local/bin" >> $GITHUB_PATH
48
49
50
- name: Poetry install with extras
0 commit comments