Skip to content

Commit 4cd0c28

Browse files
authored
Merge pull request #25 from nikhita/gomod
Fix go.mod
2 parents 4e761d0 + 70db9bf commit 4cd0c28

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ script:
77
- diff -u <(echo -n) <(golint $(go list -e ./...) | grep -v YAMLToJSON)
88
- GO111MODULE=on go vet .
99
- GO111MODULE=on go test -v -race ./...
10+
- git diff --exit-code
1011
install:
1112
- go get golang.org/x/lint/golint

go.mod

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
module github.com/kubernetes-sigs/yaml
1+
module sigs.k8s.io/yaml
22

33
go 1.12
44

5-
require gopkg.in/yaml.v2 v2.2.2
5+
require (
6+
github.com/davecgh/go-spew v1.1.1
7+
gopkg.in/yaml.v2 v2.2.2
8+
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
2+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
13
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
24
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
35
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

0 commit comments

Comments
 (0)