forked from zaihui/go-hutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
47 lines (34 loc) · 955 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
VERSION=0.0.21
COVERAGE_FILE=.coverage
##################################
####### Setup ########
##################################
.PHONY: setup
setup:
@go mod download
##################################
####### Tool ########
##################################
.PHONY: fmt lint clean
fmt:
@gofmt -d -w -e .
lint:
@golangci-lint run ./...
clean:
@git clean -fdx ${COVERAGE_FILE}
##################################
####### Coverage ########
##################################
.PHONY: test coverage coverage_html
TEST_FLAGS = -v -race -failfast -covermode=atomic
test:
@go test ${TEST_FLAGS} -coverprofile=${COVERAGE_FILE} -coverpkg=./... -timeout=10s ./...
coverage: test
@go tool cover -func ${COVERAGE_FILE}
coverage_html: test
@go tool cover -html ${COVERAGE_FILE}
##################################
####### Release ########
##################################
release:
@bumpversion patch