We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python -m
1 parent 61b9499 commit de59015Copy full SHA for de59015
1 file changed
action.yml
@@ -149,12 +149,12 @@ runs:
149
- name: Install Python dependencies (Poetry)
150
if: ${{ inputs.auto-install == 'true' && inputs.package-manager == 'poetry' && inputs.frozen-lockfile == 'true' }}
151
shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }}
152
- run: python -m poetry install --sync
+ run: poetry install --sync
153
154
- name: Install Python dependencies (Poetry, no-frozen-lockfile)
155
if: ${{ inputs.auto-install == 'true' && inputs.package-manager == 'poetry' && inputs.frozen-lockfile == 'false' }}
156
157
- run: python -m poetry install
+ run: poetry install
158
159
# auto install (uv)
160
0 commit comments