From 084cd7a6c4bed87292656a4da66da717b0f91cce Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Thu, 17 Aug 2023 17:49:14 +0200 Subject: [PATCH 1/3] Fix coverallsapp/github-action v2 --- .github/workflows/coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e691992458..755e786665 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -2,7 +2,7 @@ name: Test coverage on: push: - branches: [develop, production] + branches: [develop, production, fix-coveralls-v2] paths: - ".github/workflows/coverage.yml" - ".github/actions/**" @@ -73,5 +73,5 @@ jobs: uses: coverallsapp/github-action@v2.2.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: coverage.info + file: coverage.info flag-name: Unit From 47a16c7f5e54ac00afc3de6680d3cb801926e363 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Fri, 18 Aug 2023 09:56:39 +0200 Subject: [PATCH 2/3] Try without file option --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 755e786665..99f53f972c 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -73,5 +73,5 @@ jobs: uses: coverallsapp/github-action@v2.2.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - file: coverage.info + # file: coverage.info flag-name: Unit From fbc7f07b220a99014757db4713d855ed1627a70d Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Thu, 24 Aug 2023 11:46:34 +0200 Subject: [PATCH 3/3] Fix? --- .github/workflows/coverage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 99f53f972c..a5443ed7b9 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -73,5 +73,6 @@ jobs: uses: coverallsapp/github-action@v2.2.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - # file: coverage.info + format: lcov + file: coverage.info flag-name: Unit