forked from deanishe/awgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Call goveralls manually and change badges
- Loading branch information
Showing
5 changed files
with
38 additions
and
47 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 |
---|---|---|
|
@@ -22,7 +22,9 @@ jobs: | |
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: go get -v -t -d ./... | ||
run: | | ||
go get -v -t -d ./... | ||
go get -v -d github.com/mfridman/tparse | ||
- name: Lint Go source code | ||
run: | | ||
|
@@ -42,8 +44,16 @@ jobs: | |
go install github.com/schrej/godacov | ||
godacov -r coverage.out -t ${{ secrets.CODACY_TOKEN }} -c ${{ github.sha }} | ||
# - name: Coveralls | ||
# uses: shogo82148/[email protected] | ||
# with: | ||
# github-token: ${{ secrets.COVERALLS_REPO_TOKEN }} | ||
# path-to-profile: coverage.out | ||
# parallel: false | ||
|
||
- name: Coveralls | ||
uses: shogo82148/[email protected] | ||
with: | ||
path-to-profile: coverage.out | ||
parallel: false | ||
env: | ||
COVERALLS_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | ||
run: | | ||
go install github.com/mattn/goveralls | ||
goveralls -coverprofile coverage.out -reponame deanishe/awgo |
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
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