We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6fdfe1f + b139d2b commit b4d94b2Copy full SHA for b4d94b2
.github/workflows/go.yml
@@ -26,3 +26,6 @@ jobs:
26
27
- name: Build
28
run: go build -v .
29
+
30
+ - name: test
31
+ run: go test -v ./src
Makefile
@@ -18,15 +18,22 @@ bench:
18
docker:
19
docker build -t relastle/pmy:0.1.0 -f docker/Dockerfile .
20
21
+.PHONY: lint
22
+lint:
23
+ golangci-lint run ./...
24
25
.PHONY: test
test: lint
go test -v ./src
.PHONY: integration_test
-integration_test: main test
+integration_test:
(cd ./integration_test && go test -v -run .)
32
-.PHONY: lint
-lint:
- golangci-lint run ./...
33
+.PHONY: test_all
34
+test_all:
35
+ $(MAKE) main
36
+ $(MAKE) test
37
+ $(MAKE) integration_test
38
39
0 commit comments