From 3a4f142e9d41a8e66be64e4eb1347b82e2420590 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Sun, 28 Mar 2021 15:31:39 -0500 Subject: [PATCH] ci: Fix if statement --- .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 a7ac4988..cc0c8148 100644 --- a/.github/workflows/pytest-workflow.yml +++ b/.github/workflows/pytest-workflow.yml @@ -26,7 +26,7 @@ jobs: id: yq_modules run: | output=$(echo ${{ steps.filter.outputs.changes }} | yq e 'length' -) - echo "::set-output name=proceed::$(if (test $output -lt 42); then return 0 else return 1 fi)" + echo "::set-output name=proceed::$(if (test $output -lt 42); then return 0; else return 1; fi)"