Skip to content

Commit 5b1cfd0

Browse files
committed
Update to use go modules
1 parent 14ab526 commit 5b1cfd0

File tree

6 files changed

+19
-47
lines changed

6 files changed

+19
-47
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ version: 2
22
jobs:
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 ./...

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,3 @@
99

1010
# Output of the go coverage tool, specifically when used with LiteIDE
1111
*.out
12-
13-
# venbor
14-
vendor

Gopkg.lock

Lines changed: 0 additions & 15 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 26 deletions
This file was deleted.

go.mod

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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+
)

go.sum

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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=

0 commit comments

Comments
 (0)