makefile 82 B

123456789
  1. .PHONY: all build test
  2. all: build test
  3. build:
  4. ./build.sh
  5. test:
  6. go test ./...