From 1e9aad430d8fac8a64e945657a8bbc6db3a23ed0 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Tue, 2 Feb 2021 15:40:30 -0600 Subject: [PATCH] ci: Remove ${{}} for style points It's not necessary in if statements --- .github/workflows/pytest-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest-workflow.yml b/.github/workflows/pytest-workflow.yml index 50e8c53c..9bd2d4c6 100644 --- a/.github/workflows/pytest-workflow.yml +++ b/.github/workflows/pytest-workflow.yml @@ -78,7 +78,7 @@ jobs: run: PROFILE=${{ matrix.profile }} pytest --tag ${{ matrix.tags }} --symlink --wt 2 - name: Upload logs on failure - if: ${{ failure() }} + if: failure() uses: actions/upload-artifact@v2 with: name: logs