-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d2d7c0
commit 3aada31
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
|
@@ -53,11 +53,11 @@ jobs: | |
run: | | ||
go get github.com/jandelgado/gcov2lcov | ||
go install github.com/jandelgado/gcov2lcov | ||
~/go/bin/gcov2lcov -infile coverage_client.out -outfile lcov.info | ||
~/go/bin/gcov2lcov -infile coverage_client.out -outfile lcov_client.info | ||
- uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./lcov.info | ||
path-to-lcov: ./lcov_client.info | ||
- name: Upload coverage data to CodeClimate | ||
uses: paambaati/[email protected] | ||
with: | ||
|
@@ -113,11 +113,11 @@ jobs: | |
run: | | ||
go get github.com/jandelgado/gcov2lcov | ||
go install github.com/jandelgado/gcov2lcov | ||
~/go/bin/gcov2lcov -infile coverage_test1.out -outfile lcov.info | ||
~/go/bin/gcov2lcov -infile coverage_test1.out -outfile lcov_test1.info | ||
- uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./lcov.info | ||
path-to-lcov: ./lcov_test1.info | ||
- name: Upload coverage data to CodeClimate | ||
uses: paambaati/[email protected] | ||
with: | ||
|
@@ -173,11 +173,11 @@ jobs: | |
run: | | ||
go get github.com/jandelgado/gcov2lcov | ||
go install github.com/jandelgado/gcov2lcov | ||
~/go/bin/gcov2lcov -infile coverage_test2.out -outfile lcov.info | ||
~/go/bin/gcov2lcov -infile coverage_test2.out -outfile lcov_test2.info | ||
- uses: coverallsapp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./lcov.info | ||
path-to-lcov: ./lcov_test2.info | ||
- name: Upload coverage data to CodeClimate | ||
uses: paambaati/[email protected] | ||
with: | ||
|