From 8c3cfb74e2e3eadd2bffae8fb69148e7608bdee5 Mon Sep 17 00:00:00 2001 From: Simon Symeonidis Date: Sun, 8 Dec 2024 17:05:06 -0500 Subject: [PATCH] [all] Add gopls install to makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 57b0eae..651b61d 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,9 @@ linter-install: linter-releases: curl -s https://api.github.com/repos/golangci/golangci-lint/releases | jq -r '.[] | .tag_name,.body' | less +gopls-install: + go install golang.org/x/tools/gopls@latest + GOOSE_VERSION=latest goose-install: go install github.com/pressly/goose/v3/cmd/goose@$(GOOSE_VERSION)