go.mway.dev/x@v0.0.0-20240520034138-950aede9a3fb/Makefile (about)

     1  .PHONY: test
     2  test:
     3  	@go test -v -race -failfast -count 1 -coverprofile cover.out ./...
     4  
     5  .PHONY: bench
     6  bench:
     7  	@go test -v -count 1 -run x -bench . ./...
     8  
     9  .PHONY: lint
    10  lint: go.sum
    11  	@golangci-lint run --new=false ./...
    12  	
    13  go.sum: go.mod
    14  	@go mod tidy