Skip to content

Commit 46f7121

Browse files
committed
add simple Makefile, copied from go-statestore
1 parent f9b1978 commit 46f7121

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Makefile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
SHELL=/usr/bin/env bash
2+
3+
all: build
4+
.PHONY: all
5+
6+
test:
7+
go test -v $(GOFLAGS) ./...
8+
.PHONY: test
9+
10+
lint:
11+
golangci-lint run -v --concurrency 2 --new-from-rev origin/master
12+
.PHONY: lint
13+
14+
build:
15+
go build -v $(GOFLAGS) ./...
16+
.PHONY: build

0 commit comments

Comments
 (0)