File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,13 @@ runs:
101101
102102 - name : Install project (no extras or groups)
103103 if : inputs.extras == '' && inputs.groups == ''
104- run : poetry install --no-interaction ${{ inputs.install-project != 'true' && '--no-root' || '' }}
104+ run : poetry install -vv - -no-interaction ${{ inputs.install-project != 'true' && '--no-root' || '' }}
105105 shell : bash
106106
107107 - name : Install project with --extras=${{ inputs.extras }} --with=${{ inputs.groups }}
108108 if : inputs.extras != '' || inputs.groups != ''
109109 # (Empty extras or groups lists are fine.)
110- run : poetry install --no-interaction --extras="${{ inputs.extras }}" --with="${{ inputs.groups }}" ${{ inputs.install-project != 'true' && '--no-root' || '' }}
110+ run : poetry install -vv - -no-interaction --extras="${{ inputs.extras }}" --with="${{ inputs.groups }}" ${{ inputs.install-project != 'true' && '--no-root' || '' }}
111111 shell : bash
112112
113113 # For debugging---let's just check what we're working with.
You can’t perform that action at this time.
0 commit comments