From 0cd7bf92d44b096e22184c3c75eb5ae892a386a9 Mon Sep 17 00:00:00 2001 From: Yuki Iwai Date: Mon, 1 Apr 2024 22:41:06 +0900 Subject: [PATCH] CI: Enable parallel mode for the coveralls Signed-off-by: Yuki Iwai --- .github/workflows/test-go.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test-go.yaml b/.github/workflows/test-go.yaml index 783c6311b42..ffbef5b9162 100644 --- a/.github/workflows/test-go.yaml +++ b/.github/workflows/test-go.yaml @@ -59,9 +59,19 @@ jobs: with: path-to-profile: coverage.out working-directory: ${{ env.GOPATH }}/src/github.com/kubeflow/katib + parallel: true strategy: fail-fast: false matrix: # Detail: `setup-envtest list` kubernetes-version: ["1.25.0", "1.26.1", "1.27.1"] + + # notifies that all test jobs are finished. + finish: + needs: unittests + runs-on: ubuntu-22.04 + steps: + - uses: shogo82148/actions-goveralls@v1 + with: + parallel-finished: true