From 24a82d92ab12362146d0e11f73f24e86b5fdc8f0 Mon Sep 17 00:00:00 2001 From: ckunki Date: Wed, 22 May 2024 16:06:39 +0200 Subject: [PATCH] Fixed if statement in github worflow [run-slow-tests] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 236c43c..bb72615 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: uses: ./.github/actions/pytest-plugins-environment - name: Evaluate Whether to Run Slow Tests - if: "! contains(github.event.head_commit.message, '[run-slow-tests]')" + if: ${{ ! contains(github.event.head_commit.message, '[run-slow-tests]') }} run: echo 'RUN_SLOW_TESTS=-m "not slow"' >> $GITHUB_ENV - name: Run Tests of All Plugins