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

Glide integration #7

Merged
merged 8 commits into from
Apr 24, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Integrate glide for reproducible installations
  • Loading branch information
kishaningithub committed Apr 24, 2018
commit e5bcdd2832c4d7060fb5b276c408941005221606
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -18,3 +18,5 @@
out/

# End of https://www.gitignore.io/api/go

vendor/
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ language: go
go:
- 1.10.x
install:
- go get github.com/stretchr/testify/assert
- curl https://glide.sh/get | sh
- glide install
script:
- go test -v ./...
75 changes: 75 additions & 0 deletions glide.lock

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

16 changes: 16 additions & 0 deletions glide.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package: github.com/aswinkarthik93/csvdiff
import:
- package: github.com/briandowns/spinner
version: ^1.0.0
- package: github.com/cespare/xxhash
version: ^1.0.0
- package: github.com/mitchellh/go-homedir
- package: github.com/spf13/cobra
version: ^0.0.2
- package: github.com/spf13/viper
version: ^1.0.2
testImport:
- package: github.com/stretchr/testify
version: ^1.2.1
subpackages:
- assert