mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

- move the ginkgo deps into test/tools which is more consitent with the other tools there, listing in dependencies always causes errors with linters - do not install it globally on the system, instead we use it in a subdir of this project Signed-off-by: Paul Holzinger <pholzing@redhat.com>
15 lines
292 B
Go
15 lines
292 B
Go
//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/onsi/ginkgo/ginkgo"
|
|
_ "github.com/vbatts/git-validation"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
)
|