Skip to content

Commit

Permalink
Merge pull request #16 from errordeveloper/modules
Browse files Browse the repository at this point in the history
Use modules
  • Loading branch information
k8s-ci-robot committed Apr 26, 2019
2 parents 199c9c2 + f8f4ddd commit addf6da
Show file tree
Hide file tree
Showing 23 changed files with 9,974 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -3,11 +3,11 @@ dist: xenial
go:
- 1.10.x
- 1.11.x
- 1.12.x
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- diff -u <(echo -n) <(gofmt -d *.go)
- diff -u <(echo -n) <(golint $(go list -e ./...) | grep -v YAMLToJSON)
- go tool vet .
- go vet .
- go test -v -race ./...
install:
- go get golang.org/x/lint/golint
5 changes: 5 additions & 0 deletions go.mod
@@ -0,0 +1,5 @@
module github.com/kubernetes-sigs/yaml

go 1.12

require gopkg.in/yaml.v2 v2.2.2
3 changes: 3 additions & 0 deletions go.sum
@@ -0,0 +1,3 @@
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
12 changes: 12 additions & 0 deletions vendor/gopkg.in/yaml.v2/.travis.yml

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

201 changes: 201 additions & 0 deletions vendor/gopkg.in/yaml.v2/LICENSE

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

31 changes: 31 additions & 0 deletions vendor/gopkg.in/yaml.v2/LICENSE.libyaml

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

13 changes: 13 additions & 0 deletions vendor/gopkg.in/yaml.v2/NOTICE

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

0 comments on commit addf6da

Please sign in to comment.