Skip to content

Commit 32826ff

Browse files
committed
rename lint-go-vet to lint-go-gitea-vet
1 parent 06ea88a commit 32826ff

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/pull-compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
go-version-file: go.mod
9696
check-latest: true
9797
- run: make deps-backend deps-tools
98-
- run: make lint-go-windows lint-go-vet
98+
- run: make lint-go-windows lint-go-gitea-vet
9999
env:
100100
TAGS: bindata sqlite sqlite_unlock_notify
101101
GOOS: windows

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,10 +311,10 @@ lint-frontend: lint-js lint-css ## lint frontend files
311311
lint-frontend-fix: lint-js-fix lint-css-fix ## lint frontend files and fix issues
312312

313313
.PHONY: lint-backend
314-
lint-backend: lint-go lint-go-vet lint-go-gopls lint-editorconfig ## lint backend files
314+
lint-backend: lint-go lint-go-gitea-vet lint-go-gopls lint-editorconfig ## lint backend files
315315

316316
.PHONY: lint-backend-fix
317-
lint-backend-fix: lint-go-fix lint-go-vet lint-editorconfig ## lint backend files and fix issues
317+
lint-backend-fix: lint-go-fix lint-go-gitea-vet lint-editorconfig ## lint backend files and fix issues
318318

319319
.PHONY: lint-js
320320
lint-js: node_modules ## lint js files
@@ -365,8 +365,8 @@ lint-go-windows:
365365
@GOOS= GOARCH= $(GO) install $(GOLANGCI_LINT_PACKAGE)
366366
golangci-lint run
367367

368-
.PHONY: lint-go-vet
369-
lint-go-vet: ## lint go files with gitea-vet
368+
.PHONY: lint-go-gitea-vet
369+
lint-go-gitea-vet: ## lint go files with gitea-vet
370370
@echo "Running gitea-vet..."
371371
@GOOS= GOARCH= $(GO) build code.gitea.io/gitea-vet
372372
@$(GO) vet -vettool=gitea-vet ./...

0 commit comments

Comments
 (0)