-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test Coverage Report that comments to the PR
Signed-off-by: Tanner Jones <[email protected]>
- Loading branch information
1 parent
161d933
commit ff25381
Showing
3 changed files
with
45 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Go test coverage check | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
|
||
- name: Generate test coverage | ||
run: go test ./... -coverprofile=./cover.out | ||
|
||
- name: Check test coverage | ||
uses: vladopajic/go-test-coverage@v2 | ||
with: | ||
# Configure action using config file (option 1) | ||
config: ./.testcoverage.yml | ||
|
||
# Configure action by specifying input parameters individually (option 2) | ||
profile: cover.out | ||
local-prefix: github.com/org/project | ||
threshold-file: 80 | ||
threshold-package: 80 | ||
threshold-total: 95 |
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