summaryrefslogtreecommitdiff
path: root/Makefile
blob: 52033ae06f96aa26be0d3dbbac89737de202ec37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all:
	@echo
	@echo the github branch in this repo has the davecgh\'s master branch
	@echo
	@echo this is an experiement by me to learn how go modules and versioning works
	@echo go-spew is a great tool. thanks dave!
	@echo

test:
	go test -v -race -tags safe ./
	go test -v -race -tags testcgo ./ -covermode=atomic -coverprofile=profile.cov

redomod:
	rm -f go.*
	GO111MODULE= go mod init
	GO111MODULE= go mod tidy