github.com/rumpl/mod@v1.1.0/Makefile (about)

     1  all: cli
     2  
     3  cli:
     4  	@go build .
     5  
     6  test:
     7  	@go test -coverprofile=profile.out ./...
     8  
     9  .PHONY: cli