Skip to content

Commit 51308ab

Browse files
committed
Remove go vet step from CI and GNUMakefile
Remove the redundant go vet invocation from both the GitHub Actions workflow and the GNUmakefile. The CI workflow no longer runs "go vet ./..." and the "vet" target and its invocation in the makefile are deleted. This simplifies the build steps and avoids running go vet twice or as a separate target, keeping linting/formatting tasks consolidated (e.g. golangci-lint).
1 parent e61c436 commit 51308ab

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

.github/workflows/go.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ jobs:
4444
uses: actions/setup-go@v6
4545
with:
4646
go-version: ${{ matrix.go-versions }}
47-
- name: Run go vet
48-
run: go vet ./...
4947
- name: Run yaml-test-suit tests
5048
run: make test-yts
5149
- name: Run go test

GNUmakefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ fumpt: $(GO)
7575
@go install mvdan.cc/gofumpt@latest
7676
gofumpt -l -w $(GO-FILES)
7777

78-
vet: $(GO)
79-
go vet ./...
80-
8178
cli: $(CLI-BINARY)
8279

8380
$(CLI-BINARY): $(GO)

0 commit comments

Comments
 (0)