github.com/borderzero/water@v0.0.1/Makefile (about) 1 .phony: default ci test lint vet gofmt 2 3 4 default: 5 echo 'This make file is for CI.' 6 exit 1 7 8 ci: test lint vet gofmt 9 10 test: water.test 11 sudo ./water.test -test.v 12 13 lint: 14 golint -set_exit_status 15 16 vet: 17 go vet . 18 19 gofmt: 20 gofmt -s -e -l . 21 22 water.test: *.go 23 go test -c