Skip to content

Commit 3073b0d

Browse files
committed
chore: add Makefile
1 parent a5f4194 commit 3073b0d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.PHONY: lint test test_race build_cross_os
2+
3+
default: lint test build_cross_os
4+
5+
test:
6+
go test -v -cover ./...
7+
8+
test_race:
9+
CGO_ENABLED=1 go test -v -race ./...
10+
11+
lint:
12+
golangci-lint run
13+
14+
build_cross_os:
15+
./build.sh

0 commit comments

Comments
 (0)