From ea0a3f1f125708b66ce42b7e2ff79b0aaf63dc78 Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Thu, 21 Aug 2025 11:24:11 +0000 Subject: [PATCH] chore: fix .PHONY lint targets (#893) - other - [PR](https://code.forgejo.org/forgejo/runner/pulls/893): chore: fix .PHONY lint targets Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/893 Reviewed-by: Michael Kriese Co-authored-by: Earl Warren Co-committed-by: Earl Warren --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5c80ea78..13e4f774 100644 --- a/Makefile +++ b/Makefile @@ -69,11 +69,11 @@ LDFLAGS ?= -X "code.forgejo.org/forgejo/runner/v9/internal/pkg/ver.version=v$(RE all: build -.PHONY: lint +.PHONY: lint-check lint-check: $(GO) run $(GOLANGCI_LINT_PACKAGE) run $(GOLANGCI_LINT_ARGS) -.PHONY: lint-fix +.PHONY: lint lint: $(GO) run $(GOLANGCI_LINT_PACKAGE) run $(GOLANGCI_LINT_ARGS) --fix