forked from noble-assets/adr36
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
52 lines (41 loc) · 2 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.PHONY: proto-format proto-lint proto-gen license test-unit
all: proto-all test-unit
###############################################################################
### Tooling ###
###############################################################################
FILES := $(shell find $(shell go list -f '{{.Dir}}' ./...) -name "*.go" -a -not -name "*.pb.go" -a -not -name "*.pb.gw.go" | sed "s|$(shell pwd)/||g")
license:
@go-license --config .github/license.yml $(FILES)
###############################################################################
### Protobuf ###
###############################################################################
BUF_VERSION=1.39
proto-all: proto-format proto-lint proto-gen
proto-format:
@echo "🤖 Running protobuf formatter..."
@cd proto
@docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \
bufbuild/buf:$(BUF_VERSION) format --diff --write
@echo "✅ Completed protobuf formatting!"
proto-gen:
@echo "🤖 Generating code from protobuf..."
@docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \
adr36-proto sh ./proto/generate.sh
@echo "✅ Completed code generation!"
proto-lint:
@echo "🤖 Running protobuf linter..."
@cd proto
@docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \
bufbuild/buf:$(BUF_VERSION) lint
@echo "✅ Completed protobuf linting!"
proto-setup:
@echo "🤖 Setting up protobuf environment..."
@docker build --rm --tag adr36-proto:latest --file proto/Dockerfile .
@echo "✅ Setup protobuf environment!"
###############################################################################
### Testing ###
###############################################################################
test-unit:
@echo "🤖 Running unit tests..."
@go test -cover -coverprofile=coverage.out -race -v .
@echo "✅ Completed unit tests!"