Makefile 131 B

12345678
  1. all: test
  2. test:
  3. go vet .
  4. go test -cover -v .
  5. ex:
  6. find ./examples -type f -name "*.go" | xargs -I {} go build -o /tmp/ignore {}