We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38684e9 commit 6789565Copy full SHA for 6789565
experimental/Makefile
@@ -0,0 +1,17 @@
1
+lint:
2
+ $(GOBIN)/golangci-lint run ./...
3
+
4
+lint-ci:
5
+ $(GOBIN)/golangci-lint run ./... --output.text.path=stdout --timeout=5m
6
7
+generate:
8
+ go generate ./...
9
10
+test:
11
+ @echo "Skipping tests in experimental module"
12
13
+tidy:
14
+ go mod tidy
15
16
+tidy-ci:
17
+ tidied -verbose
0 commit comments