Skip to content

test: user resources feed #40

test: user resources feed

test: user resources feed #40

name: Go test coverage check
on:
push:
jobs:
test-coverage:
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
# # specifting these action parameters will override appropriate config values.
# profile: cover.out
# local-prefix: github.com/dexfs/go-twitter-clone
# threshold-file: 60
# threshold-package: 70
# threshold-total: 80