Makefile 228 B

123456789101112131415161718
  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. build:
  11. go build -o bin/cli cmd/cli/main.go
  12. .PHONY: default clean test lint tidy build