From 702e35a09daaf816702bc2a2f0e799532d878ae0 Mon Sep 17 00:00:00 2001 From: Bryant Finney Date: Tue, 23 Nov 2021 14:54:53 -0500 Subject: [PATCH] =?UTF-8?q?[#34]=20hopefully=20it=20works=20now=20?= =?UTF-8?q?=F0=9F=A4=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bryant Finney --- .github/workflows/usage.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/usage.yml b/.github/workflows/usage.yml index 40a6b7b..5af8e82 100644 --- a/.github/workflows/usage.yml +++ b/.github/workflows/usage.yml @@ -77,16 +77,13 @@ jobs: run: ${{ matrix.extras }} --version - name: "Verify ${{ matrix.extras }} installation (${{ matrix.manager }}) 🖨️" - if: | - ${{ matrix.manager }} == 'pipenv' && - ${{ matrix.extras }} && - ${{ matrix.extras }} != "dev" + if: ${{ matrix.manager == 'pipenv' && matrix.extras && matrix.extras != 'dev' }} run: pipenv run ${{ matrix.extras }} --version - name: "Verify package installation (${{ matrix.manager }}) 🖨️" - if: ${{ matrix.manager }} == 'pip' + if: ${{ matrix.manager == 'pip' }} run: pipenv-setup --help - name: "Verify installation (${{ matrix.manager }}) 🖨️" - if: ${{ matrix.manager }} == 'pipenv' + if: ${{ matrix.manager == 'pipenv' }} run: pipenv run pipenv-setup --help