From d65c8c4f88308bbe78288e8f2fe22943985e98f4 Mon Sep 17 00:00:00 2001 From: Luca8991 Date: Wed, 29 Nov 2023 22:48:01 +0100 Subject: [PATCH] chore: enable tests on PRs (no draft) --- .github/workflows/tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3b91b6f..4e5a718 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,9 +6,16 @@ on: branches: - main - dev + pull_request: + types: + - opened + - synchronize + - reopened + - ready_for_review jobs: unit-and-integration-tests: + if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - uses: actions/checkout@v4