From e4033a450a2ff8500c6e1acac1a6e8472e7f589c Mon Sep 17 00:00:00 2001 From: Anthony Corletti Date: Thu, 8 Jun 2023 17:04:13 -0400 Subject: [PATCH] cleanup install --- .github/workflows/test.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5c50bd6e0..989334ef4 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -30,12 +30,12 @@ jobs: run: pip install invoke - name: install dependencies - if: ${{ matrix.python-version }} != "3.7" - run: inv install - - - name: install dependencies (python 3.7) - if: ${{ matrix.python-version }} == "3.7" - run: inv install --no-editable -e dev,test,doc,py37 + run: | + if [[ ${{ matrix.python-version }} == "3.7" ]]; then + inv install --no-editable -e dev,test,doc,py37 + else + inv install --no-editable + fi - name: test run: inv test