From 84f7fcaaaa227a7ce28af3413b9e33e9633a041b Mon Sep 17 00:00:00 2001 From: David Robertson Date: Mon, 4 Sep 2023 13:22:54 +0100 Subject: [PATCH] Pass `-vv` to `poetry install` --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 22983ce..b5ce141 100644 --- a/action.yml +++ b/action.yml @@ -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.