Makefile 177 B

123456789101112131415
  1. default: test
  2. clean:
  3. go clean -testcache ./...
  4. test:
  5. go test ./...
  6. lint:
  7. golangci-lint run --disable=structcheck
  8. tidy:
  9. go mod tidy
  10. .PHONY: default clean test lint tidy