File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5151 run : make test
5252
5353 - name : Run coverage
54- run : go test -coverprofile=coverage.txt -covermode=atomic $(go list ./... | grep -v /vendor/ | grep -v /api/)
54+ run : go test -coverprofile=coverage.txt -covermode=atomic $(go list ./... | grep -v /vendor/ | grep -v /api/ | grep -v /cmd/ )
5555
5656 - name : Upload Coverage report to CodeCov
5757 uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ SHELL := /bin/bash
22
33PROJECT_NAME := "github.com/zhufuyi/sponge"
44PKG := "$(PROJECT_NAME ) "
5- PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/ | grep -v /api/)
5+ PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/ | grep -v /api/ | grep -v /cmd/ )
66
77# delete the templates code start
88.PHONY : install
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ SHELL := /bin/bash
22
33PROJECT_NAME := "github.com/zhufuyi/sponge"
44PKG := "$(PROJECT_NAME)"
5- PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/ | grep -v /api/)
5+ PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/ | grep -v /api/ | grep -v /cmd/ )
66
77
88
You can’t perform that action at this time.
0 commit comments