From 9166894c696582ee37893ce92a694ba227744fa0 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 3 May 2022 18:34:38 +0200 Subject: vendor test dependencies instead of installing via network We can vendor the test dependencies such as go-md2man, git-validation and goimports. This allows us to always install the same version as specified in go.mod. Also we do not rely on a network connection for this. The advantage with this method is that dependabot will also update the dependencies for us and we do not have to hardcode versions in the Makefile. Signed-off-by: Paul Holzinger --- test/tools/tools.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/tools/tools.go (limited to 'test/tools') diff --git a/test/tools/tools.go b/test/tools/tools.go new file mode 100644 index 000000000..5bd1183a5 --- /dev/null +++ b/test/tools/tools.go @@ -0,0 +1,13 @@ +//go:build tools +// +build tools + +package tools + +// Importing the packages here will allow to vendor those via +// `go mod vendor`. + +import ( + _ "github.com/cpuguy83/go-md2man/v2" + _ "github.com/vbatts/git-validation" + _ "golang.org/x/tools/cmd/goimports" +) -- cgit v1.2.3-54-g00ecf