Skip to content

Commit 276d798

Browse files
adecaroAkramBitar
authored andcommitted
fix coveralls
Signed-off-by: Angelo De Caro <adc@zurich.ibm.com>
1 parent 6281cc2 commit 276d798

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,13 @@ jobs:
7575
./ci/scripts/filter-coverage.sh profile.cov profile.cov
7676
7777
- name: Send coverage to Coveralls
78-
uses: shogo82148/actions-goveralls@v1
78+
uses: coverallsapp/github-action@v2
7979
with:
80-
path-to-profile: profile.cov
80+
github-token: ${{ secrets.GITHUB_TOKEN }}
81+
file: profile.cov
8182
flag-name: utest-${{ matrix.tests }}
8283
parallel: true
84+
fail-on-error: false
8385

8486
- name: Run ${{ matrix.tests }}
8587
run: make ${{ matrix.tests }}
@@ -177,20 +179,24 @@ jobs:
177179
./ci/scripts/filter-coverage.sh coverage.profile coverage.profile
178180
179181
- name: Send coverage to Coveralls
180-
uses: shogo82148/actions-goveralls@v1
182+
uses: coverallsapp/github-action@v2
181183
with:
182-
path-to-profile: coverage.profile
184+
github-token: ${{ secrets.GITHUB_TOKEN }}
185+
file: coverage.profile
183186
flag-name: itest-${{ matrix.tests }}
184187
parallel: true
188+
fail-on-error: false
185189

186190
publish-coverage:
187191
needs: [ utest, itest ]
188192
runs-on: ubuntu-latest
189193
steps:
190194
- name: Finish coverage report
191-
uses: shogo82148/actions-goveralls@v1
195+
uses: coverallsapp/github-action@v2
192196
with:
197+
github-token: ${{ secrets.GITHUB_TOKEN }}
193198
parallel-finished: true
199+
fail-on-error: false
194200

195201
bench-check:
196202
needs: checks

0 commit comments

Comments
 (0)