-
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.
- Loading branch information
1 parent
ca04770
commit 0cb93c8
Showing
1 changed file
with
39 additions
and
22 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 |
---|---|---|
@@ -1,23 +1,40 @@ | ||
name: Go test coverage check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v3 | ||
|
||
- name: generate test coverage | ||
run: go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./... | ||
name: Generate code coverage badge | ||
|
||
- 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). | ||
# If you are using config file (option 1) you shouldn't use these parameters, however | ||
# specifing these action parameters will override appropriate config values. | ||
profile: cover.out | ||
local-prefix: github.com/org/project | ||
threshold-file: 80 | ||
threshold-package: 80 | ||
threshold-total: 95 | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
name: Update coverage badge | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | ||
- name: Setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: 'go.mod' | ||
- name: generate test coverage | ||
run: go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./... | ||
|
||
- 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). | ||
# If you are using config file (option 1) you shouldn't use these parameters, however | ||
# specifing these action parameters will override appropriate config values. | ||
profile: cover.out | ||
local-prefix: github.com/org/project | ||
threshold-file: 80 | ||
threshold-package: 80 | ||
threshold-total: 95 |