Skip to content

Commit

Permalink
Create test_coverage.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
vuong177 authored Nov 4, 2024
1 parent e828cc7 commit 6312379
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test_coverage.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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: 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

0 comments on commit 6312379

Please sign in to comment.