From c5a03946136ddbfb4c9afe7b61954ba8323a1eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Due=C3=B1as?= Date: Thu, 13 Jun 2024 10:58:34 +0200 Subject: [PATCH] [ci] Fix coveralls parallel run MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The error "Can't add a job to a build that is already closed" is fixed assigning a unique name to each parallel run of the tests. Signed-off-by: Santiago DueƱas --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 99ad94fff..0eb70a32d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -44,3 +44,5 @@ jobs: uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63 # v2.3.0 with: coverage-reporter-version: "v0.6.9" + flag-name: run ${{ join(matrix.*, ' - ') }} + parallel: true