0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 11:02:59 +00:00

add tools

This commit is contained in:
Pavel Boldyrev 2021-09-09 15:00:43 -04:00
parent d3f323e66b
commit 205e2550f9
No known key found for this signature in database
GPG Key ID: 9A3B05A2B8921AD9
3 changed files with 1572 additions and 0 deletions

8
tools/go.mod Normal file
View File

@ -0,0 +1,8 @@
module github.com/golang-templates/seed/build
go 1.16
require (
github.com/golangci/golangci-lint v1.42.0
github.com/goreleaser/goreleaser v0.176.0
)

1552
tools/go.sum Normal file

File diff suppressed because it is too large Load Diff

12
tools/tools.go Normal file
View File

@ -0,0 +1,12 @@
// +build tools
package tools
// Manage tool dependencies via go.mod.
//
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
// https://github.com/golang/go/issues/25922
import (
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/goreleaser/goreleaser"
)