We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 283a3c7 commit e8bb082Copy full SHA for e8bb082
1 file changed
Makefile
@@ -1,6 +1,16 @@
1
check: fmt vet tidy test
2
.PHONY: check
3
4
+clean:
5
+ @echo "==> cleaning up <=="
6
+ rm -rf ./gh-models
7
+.PHONY: clean
8
+
9
+build:
10
+ @echo "==> building gh-models binary <=="
11
+ script/build
12
+.PHONY: build
13
14
ci-lint:
15
@echo "==> running Go linter <=="
16
golangci-lint run --timeout 5m ./...
@@ -30,12 +40,3 @@ test:
30
40
@echo "==> running Go tests <=="
31
41
go test -race -cover ./...
32
42
.PHONY: test
33
-
34
-build:
35
- script/build
36
-.PHONY: build
37
38
-clean:
39
- @echo "==> cleaning up <=="
- rm -rf ./gh-models
-.PHONY: clean
0 commit comments