Skip to content

Commit

Permalink
chore(cicd): fix missing coverage package
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuigo committed Dec 5, 2023
1 parent 720b4c2 commit da9b240
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
msg?=

test: race
go test -coverprofile cover.out -covermode=atomic -failfast ./...
go test -coverprofile cover.out -coverpkg ".,./examples" -covermode=atomic -failfast ./...
go test -coverprofile cover.out -coverpkg "./..." -covermode=atomic -failfast ./...
cover: test
go tool cover -html=cover.out
race:
go test -race -failfast ./...
fmt:
gofmt -w .
gofmt -s -w .

.ONESHELL:
gitcheck:
Expand Down

0 comments on commit da9b240

Please sign in to comment.