Skip to content

Commit 84f7fca

Browse files
author
David Robertson
committed
Pass -vv to poetry install
1 parent 8fe7cb1 commit 84f7fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)