File tree Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Expand file tree Collapse file tree 3 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : go
2
2
go :
3
- - 1.9
3
+ - 1.12
4
+ env :
5
+ - GO111MODULE=on
4
6
# Don't email me the results of the test runs.
5
7
notifications :
6
8
email : false
7
9
before_script :
8
- - go get github.com/golang/lint/golint # Linter
10
+ - go get -u golang.org/x/lint/golint # Linter
11
+ - go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
9
12
10
13
script :
11
14
- go test -v -race ./... # Run all the tests with the race detector enabled
12
15
- go vet ./... # go vet is the official Go static analyzer
13
- - golint -set_exit_status $(go list ./...) # one last linter
16
+ - golint -set_exit_status $(go list ./...) # one last linter
17
+ - golangci-lint run # some more linters
Original file line number Diff line number Diff line change
1
+ module github.com/alexandrst88/terraform-variables-generator
2
+
3
+ go 1.12
4
+
5
+ require (
6
+ github.com/sirupsen/logrus v1.4.1
7
+ github.com/spf13/cobra v0.0.3
8
+ github.com/spf13/pflag v1.0.3 // indirect
9
+ )
Original file line number Diff line number Diff line change
1
+ github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
2
+ github.com/konsorten/go-windows-terminal-sequences v1.0.1 /go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ =
3
+ github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
4
+ github.com/sirupsen/logrus v1.4.1 h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k =
5
+ github.com/sirupsen/logrus v1.4.1 /go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q =
6
+ github.com/spf13/cobra v0.0.3 h1:ZlrZ4XsMRm04Fr5pSFxBgfND2EBVa1nLpiy1stUsX/8 =
7
+ github.com/spf13/cobra v0.0.3 /go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ =
8
+ github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg =
9
+ github.com/spf13/pflag v1.0.3 /go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4 =
10
+ github.com/stretchr/objx v0.1.1 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
11
+ github.com/stretchr/testify v1.2.2 /go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs =
12
+ golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 h1:I6FyU15t786LL7oL/hn43zqTuEGr4PN7F4XJ1p4E3Y8 =
13
+ golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 /go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY =
You can’t perform that action at this time.
0 commit comments