Skip to content

Commit

Permalink
Pass -vv to poetry install
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson committed Sep 4, 2023
1 parent 8fe7cb1 commit 84f7fca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ runs:

- name: Install project (no extras or groups)
if: inputs.extras == '' && inputs.groups == ''
run: poetry install --no-interaction ${{ inputs.install-project != 'true' && '--no-root' || '' }}
run: poetry install -vv --no-interaction ${{ inputs.install-project != 'true' && '--no-root' || '' }}
shell: bash

- name: Install project with --extras=${{ inputs.extras }} --with=${{ inputs.groups }}
if: inputs.extras != '' || inputs.groups != ''
# (Empty extras or groups lists are fine.)
run: poetry install --no-interaction --extras="${{ inputs.extras }}" --with="${{ inputs.groups }}" ${{ inputs.install-project != 'true' && '--no-root' || '' }}
run: poetry install -vv --no-interaction --extras="${{ inputs.extras }}" --with="${{ inputs.groups }}" ${{ inputs.install-project != 'true' && '--no-root' || '' }}
shell: bash

# For debugging---let's just check what we're working with.
Expand Down

0 comments on commit 84f7fca

Please sign in to comment.