File tree Expand file tree Collapse file tree 6 files changed +19
-47
lines changed
Expand file tree Collapse file tree 6 files changed +19
-47
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ version: 2
22jobs :
33 build :
44 docker :
5- - image : circleci/golang:1.10.3
5+ - image : circleci/golang:1.12
6+ environment :
7+ GO111MODULE : " on"
68 working_directory : /go/src/github.com/szyn/digdag-go-client
79 steps :
810 - checkout
9- - run : go get -u github.com/golang/dep/cmd/dep
1011 - run : go get -u github.com/golang/lint/golint
11- - run : dep ensure
1212 - run : golint $(go list ./...)
1313 - run : go vet ./...
1414 - run : go test -race -coverprofile=coverage.txt -covermode=atomic ./...
Original file line number Diff line number Diff line change 99
1010# Output of the go coverage tool, specifically when used with LiteIDE
1111* .out
12-
13- # venbor
14- vendor
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ module github.com/szyn/digdag-go-client
2+
3+ require (
4+ github.com/kr/pretty v0.1.0 // indirect
5+ github.com/satori/go.uuid v1.2.0
6+ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
7+ )
Original file line number Diff line number Diff line change 1+ github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI =
2+ github.com/kr/pretty v0.1.0 /go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo =
3+ github.com/kr/pty v1.1.1 /go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ =
4+ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE =
5+ github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
6+ github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww =
7+ github.com/satori/go.uuid v1.2.0 /go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0 =
8+ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY =
9+ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
You can’t perform that action at this time.
0 commit comments