From 6312379deb0a1ee0d9c7dd527c38ab3c406079e3 Mon Sep 17 00:00:00 2001 From: vuong <56973102+vuong177@users.noreply.github.com> Date: Mon, 4 Nov 2024 13:27:19 +0700 Subject: [PATCH] Create test_coverage.xml --- .github/workflows/test_coverage.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test_coverage.xml diff --git a/.github/workflows/test_coverage.xml b/.github/workflows/test_coverage.xml new file mode 100644 index 0000000..db8ad1d --- /dev/null +++ b/.github/workflows/test_coverage.xml @@ -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