ci: add tools package to lock Go tooling versions

This commit is contained in:
Roy Lee 2022-08-04 21:28:12 -07:00
parent 18b605c6e1
commit 13a42b37ce

8
tools/tools.go Normal file
View file

@ -0,0 +1,8 @@
//go:build tools
// +build tools
package tools
import (
_ "golang.org/x/tools/cmd/goimports"
)