From 4cf878dc0d2697e97ca38bfa625e10b9079ce2a2 Mon Sep 17 00:00:00 2001 From: Federico Maggi <7142570+fredmaggiowski@users.noreply.github.com> Date: Fri, 12 Jan 2024 18:20:26 +0100 Subject: [PATCH 1/2] ci: fix coveralls parallelism --- .github/workflows/test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ceafd82d..eb81b229 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,6 +30,16 @@ jobs: path-to-profile: coverage.out flag-name: Go-${{ matrix.go_version }} parallel: true + + post-tests: + runs-on: ubuntu-latest + needs: tests + steps: + - name: Send the coverage output + uses: shogo82148/actions-goveralls@v1 + with: + parallel-finished: true + test-latest: name: Test latest strategy: From 10821de29f02ec9d4ac2d808e9a83ef88b0220e6 Mon Sep 17 00:00:00 2001 From: Federico Maggi <7142570+fredmaggiowski@users.noreply.github.com> Date: Fri, 12 Jan 2024 18:30:21 +0100 Subject: [PATCH 2/2] Apply suggestions from code review --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eb81b229..cd65ea7c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest needs: tests steps: - - name: Send the coverage output + - name: Close coverage report uses: shogo82148/actions-goveralls@v1 with: parallel-finished: true