github.com/brandur/modulir@v0.0.0-20240305213423-94ee82929cbd/Makefile (about)

     1  all: clean test vet check-gofmt lint
     2  
     3  check-gofmt:
     4  	scripts/check_gofmt.sh
     5  
     6  clean:
     7  	go clean ./...
     8  
     9  lint:
    10  	$(shell go env GOPATH)/bin/golint -set_exit_status ./...
    11  
    12  test:
    13  	go test ./... -test.v
    14  
    15  test-nocache:
    16  	go test -count=1 ./...
    17  
    18  vet:
    19  	go vet ./...