We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da114db commit 1747e6aCopy full SHA for 1747e6a
Makefile
@@ -1,14 +1,16 @@
1
# A Self-Documenting Makefile: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
2
3
SOURCE_FILES?=./...
4
-GOLANGCI_VERSION=v1.40.1
+GOLANGCI_VERSION=v1.62.2
5
COVERAGE=coverage.out
6
7
export PATH := ./bin:$(PATH)
8
export GO111MODULE := on
9
10
+default: build
11
+
12
.PHONY: build
-build:
13
+build: ## Compile code
14
go install $(SOURCE_FILES)
15
16
.PHONY: setup
go.mod
@@ -2,6 +2,8 @@ module go.mongodb.org/atlas-appservices
go 1.23
+toolchain go1.23.1
require (
github.com/go-test/deep v1.1.1
github.com/google/go-querystring v1.1.0
0 commit comments