schnutibox/Makefile

56 lines
1.1 KiB
Makefile
Raw Normal View History

2021-03-30 19:59:26 +02:00
.PHONY: build
build:
goreleaser build --rm-dist --snapshot
.PHONY: release
release:
goreleaser release --rm-dist --snapshot --skip-publish
.PHONY: generate
generate:
go generate
.PHONY: lint
lint:
2021-04-16 09:34:22 +02:00
golangci-lint run --timeout 10m --enable-all --disable=exhaustivestruct
buf lint -v
2021-03-30 19:59:26 +02:00
.PHONY: test
test:
go test -v -race -cover ./...
.PHONY: test-integration
2021-06-01 15:18:39 +02:00
test-integration: build
go test -v -tags=integration -timeout=240m
.PHONY: test-all
test-all: test test-integration
2021-03-30 19:59:26 +02:00
.PHONY: readme
readme:
goreadme -title revive > README.md
.PHONY: tidy
tidy:
go mod tidy
go mod vendor
.PHONY: build-image
build-image:
2021-06-01 15:18:39 +02:00
./scripts/build.sh
2021-05-04 08:41:43 +02:00
.PHONY: install-tools
install-tools:
go install -v \
2021-05-04 08:41:43 +02:00
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway \
github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2 \
google.golang.org/protobuf/cmd/protoc-gen-go \
google.golang.org/grpc/cmd/protoc-gen-go-grpc \
github.com/bufbuild/buf/cmd/buf \
github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking \
github.com/bufbuild/buf/cmd/protoc-gen-buf-lint
.PHONY: grpc-gen
grpc-gen:
buf generate -v