From bcdfbaf8b9c4caabebbc1633ff7b2f2ba8a21d2d Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Fri, 7 Jul 2023 10:45:00 +0200 Subject: [PATCH] Run tests for PRs --- .github/workflows/ci-cd.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index a1ad8e81cf..fa618e607b 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -1,6 +1,11 @@ name: Tests -on: [push, pull_request] +on: + push: + branches: + - master + - release/** + pull_request: concurrency: ${{ github.workflow }}-${{ github.ref }} @@ -8,6 +13,8 @@ jobs: release: name: Tests runs-on: ubuntu-latest + # For now, we know this will fail, so we allow failures + continue-on-error: true steps: - name: Checkout Repo uses: actions/checkout@v3