We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85d6cfc commit 1c79deaCopy full SHA for 1c79dea
Makefile
@@ -5,7 +5,17 @@ lint:
5
./scripts/lint.sh
6
7
test:
8
- ./scripts/test.sh
+ ./scripts/run-tests.sh
9
10
fmt:
11
golangci-lint run --fix ./...
12
+
13
+ci-lint:
14
+ golangci-lint run --timeout 10m
15
16
+ci-test:
17
+ go test -v ./... -timeout 20m
18
19
+ci-local: ci-lint ci-test
20
21
+.PHONY: build lint test fmt ci-lint ci-test ci-local
0 commit comments