.PHONY=all test clean check all: go build -trimpath -ldflags='-s -w' test: go test ./... check: go vet ./... staticcheck ./... clean: go clean