We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20f023a commit 388666fCopy full SHA for 388666f
.github/workflows/ci.yaml
@@ -19,10 +19,9 @@ jobs:
19
uses: golangci/golangci-lint-action@v8
20
with:
21
version: v2.4
22
- args: . ./internal/... ./testdata/...
23
24
- name: Download dependencies
25
run: go mod download
26
27
- name: Test
28
- run: go test . ./internal/...
+ run: go test ./...
Makefile
@@ -1,4 +1,7 @@
1
-.PHONY: test cover lint golangci-lint-convgen
+.PHONY: lint test cover golangci-lint-convgen
2
+
3
+lint:
4
+ golangci-lint run
5
6
test:
7
go test ./...
@@ -7,8 +10,5 @@ cover:
10
go test -cover -coverpkg .,./internal/... -coverprofile cover.prof
8
11
go tool cover -html=cover.prof -o cover.html
9
12
-lint:
- golangci-lint run . ./internal/... ./testdata/...
-
13
golangci-lint-convgen:
14
golangci-lint custom
0 commit comments