aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/tetafro/godot/Makefile
blob: f167051e873a0f4b3b80ee76f500d7b88e2abed2 (plain)
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
.PHONY: dep
dep:
	go mod tidy && go mod verify

.PHONY: test
test:
	go test ./...

.PHONY: cover
cover:
	go test -coverprofile cover.out ./...
	go tool cover -html=cover.out
	rm -f cover.out

.PHONY: lint
lint:
	golangci-lint run

.PHONY: build
build:
	go build -o godot ./cmd/godot

.PHONY: release
release:
	goreleaser release --rm-dist