From aaf617069d0fa866a6b21707289fb8737479146d Mon Sep 17 00:00:00 2001 From: Adoni5 Date: Tue, 27 Aug 2024 11:50:06 +0100 Subject: [PATCH] test coverage calculation now waits for the merge job, making sure the coverage data is available --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dc8fa38..b49452a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -66,10 +66,12 @@ jobs: name: coverage-data pattern: my-artifact-* - coverage: +coverage: name: Combine coverage runs-on: ubuntu-latest - needs: tests + needs: + - tests + - merge steps: - uses: actions/checkout@v4