Go test coverage #2
Workflow file for this run
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
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 |