We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e412598 commit 7491c2cCopy full SHA for 7491c2c
Makefile
@@ -10,22 +10,24 @@ statik: ./shell/pmy.zsh
10
# Make statik files
11
statik -src=./_shell
12
13
-.PHONY: clean
14
-clean:
15
- rm -f ./anypm
16
-
17
.PHONY: bench
18
bench:
19
go test -run=XXX -bench=.
20
21
-.PHONY: lint
22
-lint:
23
- golangci-lint run ./...
24
25
.PHONY: docker
26
docker:
27
docker build -t relastle/pmy:0.1.0 -f docker/Dockerfile .
28
+.PHONY: test
+test:
+ $(MAKE) lint
+ $(MAKE) integration_test
+
29
.PHONY: integration_test
30
integration_test:
31
(cd ./integration_test && go test -run .)
+.PHONY: lint
+lint:
32
+ golangci-lint run ./...
33
0 commit comments