From f1cf9748c7f58cfba44f84166bfb69649ae24914 Mon Sep 17 00:00:00 2001 From: mdtanker Date: Wed, 1 May 2024 18:01:12 +0200 Subject: [PATCH] chore: try stopping tests only for docs (not style) --- .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 71acd2f9..083a32b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} runs-on: ${{ matrix.runs-on }} # don't run tests if any commits in push contain "docs:" or "style:" - if: ${{ !contains(github.push.commits.message, 'docs:') && !contains(github.push.commits.message, 'style:') }} + if: ${{ !contains(github.push.commits.message, 'docs:') }} #&& !contains(github.push.commits.message, 'style:') }} needs: [pre-commit] strategy: # Otherwise, the workflow would stop if a single job fails. We want to