Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 393 Bytes

go-versions-makefile.md

File metadata and controls

13 lines (10 loc) · 393 Bytes

Go versions in Makefile

Annotate your Makefile as follows:

# Directly called by the CI
.PHONY: setup
setup:
# renovate: datasource=github-releases depName=golangci/golangci-lint
	go install github.com/golangci/golangci-lint/cmd/[email protected]

⚠️ It is important to not indent the comment since Makefiles only support comments at the start of the line.