File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,6 @@ before_install:
20
20
script :
21
21
- make lint
22
22
- make test
23
- - make test-race
24
23
- make test-vet
25
24
- make build
25
+ - make docker
Original file line number Diff line number Diff line change 1
- .PHONY : build test test-race test- vet docker clean fmt lint
1
+ .PHONY : build test test-vet docker clean fmt lint
2
2
3
3
TARGET =escalator
4
4
# E.g. set this to -v (I.e. GOCMDOPTS=-v via shell) to get the go command to be verbose
@@ -12,9 +12,6 @@ $(TARGET): $(SOURCES)
12
12
build : $(TARGET )
13
13
14
14
test :
15
- go test ./... -cover
16
-
17
- test-race :
18
15
go test ./... -cover -race
19
16
20
17
test-vet :
Original file line number Diff line number Diff line change @@ -7,4 +7,5 @@ OUTPUT="$(goreturns -d -e cmd/ pkg/)"
7
7
test -z " $OUTPUT " || (( >& 2 echo - e "$OUTPUT " "\ntry running 'make fmt'") && exit 1 )
8
8
9
9
# golint
10
- golint -set_exit_status ./...
10
+ golint -set_exit_status ./cmd/...
11
+ golint -set_exit_status ./pkg/...
You can’t perform that action at this time.
0 commit comments