Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moved dev dependancy to the tool folder #7

Merged
merged 2 commits into from
Nov 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export GOSUMDB := off
export GOFLAGS := -v -mod=vendor
GOLANGCI_VERSION := v1.31.0
GOLANGCI_VERSION := v1.32.2

default: build

Expand All @@ -10,6 +10,8 @@ build:
ensure_deps:
go mod tidy
go mod vendor
cd tools && go mod tidy
cd tools && go mod vendor

install_devtools:
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin $(GOLANGCI_VERSION)
Expand Down
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
module github.com/kunwardeep/paralleltest

go 1.13
go 1.14

require (
github.com/golangci/golangci-lint v1.31.0
github.com/stretchr/testify v1.6.1
golang.org/x/tools v0.0.0-20200812195022-5ae4c3c160a0
)
570 changes: 1 addition & 569 deletions go.sum

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions tools/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module tools/tools

go 1.14

require github.com/golangci/golangci-lint v1.31.0
598 changes: 598 additions & 0 deletions tools/go.sum

Large diffs are not rendered by default.

File renamed without changes.
15 changes: 15 additions & 0 deletions tools/vendor/github.com/davecgh/go-spew/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

145 changes: 145 additions & 0 deletions tools/vendor/github.com/davecgh/go-spew/spew/bypass.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions tools/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading