github.com/Azure/tflint-ruleset-basic-ext@v0.6.0/Makefile (about)

     1  default: build
     2  
     3  test:
     4  	go test $$(go list ./... | grep -v integration)
     5  
     6  e2e:
     7  	cd integration && go test && cd ../
     8  
     9  build:
    10  	go build
    11  
    12  install:
    13  	go run install/main.go
    14  
    15  lint:
    16  	golint --set_exit_status $$(go list ./...)
    17  	go vet ./...
    18  
    19  tools:
    20  	go install golang.org/x/lint/golint@latest
    21  
    22  .PHONY: test e2e build install lint tools