Skip to content

Commit 627c46b

Browse files
committed
[Makefile] Run test by default
Instead of lint
1 parent 0185312 commit 627c46b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
.PHONY: lint
2-
lint:
3-
golangci-lint run
4-
51
.PHONY: test
62
test:
73
go test -race -v ./...
@@ -13,4 +9,8 @@ build: $(SRC)
139
for main in $(SRC) ; do \
1410
go build $$main ; \
1511
done
16-
rm main
12+
rm main
13+
14+
.PHONY: lint
15+
lint:
16+
golangci-lint run

0 commit comments

Comments
 (0)