-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch CI to upload coverage to Coveralls instead of Codecov
Added step to generate coverage profile and configured Coveralls GitHub Action & little doc refactor.
- Loading branch information
maksim.konovalov
committed
Jan 13, 2025
1 parent
d1873ad
commit 0822988
Showing
3 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,9 +85,12 @@ jobs: | |
export NREPLICASETS=5 | ||
make test | ||
- name: Upload coverage reports to Codecov | ||
- name: Install goveralls | ||
if: ${{ matrix.coverage }} | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
slug: KaymeKaydex/go-vshard-router | ||
run: go install github.com/mattn/goveralls@latest | ||
|
||
- name: Send coverage | ||
if: ${{ matrix.coverage }} | ||
env: | ||
COVERALLS_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | ||
run: goveralls -coverprofile=coverage.out -service=github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters