Skip to content

Commit c6930a3

Browse files
committed
⬆️ ci: replace shogo82148/actions-goveralls to coverallsapp/github-action
1 parent defd9a7 commit c6930a3

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/go.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,12 @@ jobs:
5454
# run: go test -v -cover ./...
5555
# must add " for profile.cov on Windows OS
5656
run: go test -v -coverprofile="profile.cov" ./...
57-
58-
- name: Send coverage
59-
uses: shogo82148/actions-goveralls@v1
60-
if: ${{ matrix.os == 'ubuntu-latest' }}
57+
- name: Coveralls Parallel
58+
uses: coverallsapp/github-action@v2
6159
with:
62-
path-to-profile: profile.cov
60+
file: profile.cov
6361
flag-name: Go-${{ matrix.go_version }}
62+
fail-on-error: false
6463
parallel: true
6564

6665
# notifies that all test jobs are finished.
@@ -69,6 +68,8 @@ jobs:
6968
needs: test
7069
runs-on: ubuntu-latest
7170
steps:
72-
- uses: shogo82148/actions-goveralls@v1
71+
- name: Coveralls Finished
72+
uses: coverallsapp/github-action@v2
7373
with:
74+
fail-on-error: false
7475
parallel-finished: true

0 commit comments

Comments
 (0)