mirror of https://github.com/golang-jwt/jwt.git
Added coverage reporting (#304)
Co-authored-by: Michael Fridman <mf192@icloud.com>
This commit is contained in:
parent
b88a60f2d7
commit
5ea71e36a0
|
@ -37,3 +37,18 @@ jobs:
|
||||||
go test -v -race -count=1 -json -coverpkg=$(go list ./...) ./... | tee output.json | tparse -follow -notests || true
|
go test -v -race -count=1 -json -coverpkg=$(go list ./...) ./... | tee output.json | tparse -follow -notests || true
|
||||||
tparse -format markdown -file output.json -all > $GITHUB_STEP_SUMMARY
|
tparse -format markdown -file output.json -all > $GITHUB_STEP_SUMMARY
|
||||||
go build ./...
|
go build ./...
|
||||||
|
coverage:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
- name: Coverage
|
||||||
|
run: |
|
||||||
|
go test -v -covermode=count -coverprofile=coverage.cov ./...
|
||||||
|
- name: Coveralls
|
||||||
|
uses: coverallsapp/github-action@v2
|
||||||
|
with:
|
||||||
|
file: coverage.cov
|
||||||
|
format: golang
|
||||||
|
|
Loading…
Reference in New Issue