From ddc69f2b74b4c9ea865d9f20dbff96e1ae470ddd Mon Sep 17 00:00:00 2001 From: Alex Skyrta Date: Mon, 25 Mar 2024 18:02:50 +0200 Subject: [PATCH] run lint and tests on commits to release/ and tags/ --- .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 a1ad5a3..dc11fe2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: push jobs: test-and-lint: name: Run Lint and Pytest - if: github.ref != 'refs/heads/develop' && !contains(github.ref, 'release/') && !contains(github.ref, 'tags/v') + if: github.ref != 'refs/heads/develop' && contains(github.ref, 'release/') && contains(github.ref, 'tags/v') runs-on: ubuntu-latest steps: - uses: actions/checkout@v3