From 18d091c4cdde36dc2325549550573b4b930d4572 Mon Sep 17 00:00:00 2001 From: Guillaume Belanger Date: Fri, 19 Jan 2024 11:13:47 -0500 Subject: [PATCH] chore: Only runs integration tests if other tests pass (#29) --- .github/workflows/main.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ebf531a..6e39212 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -41,6 +41,10 @@ jobs: integration-test: name: Integration tests runs-on: ubuntu-22.04 + needs: + - lint-report + - static-analysis + - unit-tests-with-coverage steps: - name: Checkout uses: actions/checkout@v4