-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move building and testing jobs to GitHub Actions (#267)
- Loading branch information
Showing
16 changed files
with
265 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,41 @@ | ||
module tools | ||
|
||
require ( | ||
github.com/bombsimon/wsl/v2 v2.2.0 // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/go-critic/go-critic v0.4.3 // indirect | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/golang/protobuf:/protoc-gen-go v1.3.2 | ||
github.com/golangci/golangci-lint:/cmd/golangci-lint v1.19.1 | ||
github.com/golangci/gocyclo v0.0.0-20180528144436-0a533e8fa43d // indirect | ||
github.com/golangci/golangci-lint:/cmd/golangci-lint v1.24.0 | ||
github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039 // indirect | ||
github.com/goreleaser/goreleaser v0.108.0 | ||
github.com/gostaticanalysis/analysisutil v0.0.3 // indirect | ||
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect | ||
github.com/kisielk/godepgraph v0.0.0-20190626013829-57a7e4a651a9 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/ktr0731/bump v0.1.0 | ||
github.com/matryer/moq v0.0.0-20200125112110-7615cbe60268 | ||
github.com/mattn/go-colorable v0.1.6 // indirect | ||
github.com/mitchellh/mapstructure v1.2.2 // indirect | ||
github.com/pelletier/go-toml v1.7.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/securego/gosec v0.0.0-20200401082031-e946c8c39989 // indirect | ||
github.com/sirupsen/logrus v1.5.0 // indirect | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v0.0.7 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.6.2 // indirect | ||
github.com/stretchr/testify v1.5.1 // indirect | ||
golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890 // indirect | ||
golang.org/x/tools v0.0.0-20200204230316-67a4523381ef // indirect | ||
golang.org/x/sys v0.0.0-20200331124033-c3d80250170d // indirect | ||
golang.org/x/tools v0.0.0-20200403190813-44a64ad78b9b // indirect | ||
google.golang.org/appengine v1.4.0 // indirect | ||
gopkg.in/ini.v1 v1.55.0 // indirect | ||
mvdan.cc/unparam v0.0.0-20200314162735-0ac8026f7d06 // indirect | ||
sourcegraph.com/sqs/pbtypes v1.0.0 // indirect | ||
) | ||
|
||
go 1.13 |
Oops, something went wrong.