aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/Makefile
blob: e3ac8447d3f704f035de67bb04ba35f6c239c77e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: fmt
fmt:
	go fmt ./...

.PHONY: check
check:
	go build -o /dev/null ./...

.PHONY: lint
lint:
	go run github.com/golangci/golangci-lint/cmd/golangci-lint run

.PHONY: gen
gen:
	go generate ./...