Skip to content

Commit 413bd8b

Browse files
Merge pull request #12 from istreamlabs/go1.14
Upgrade to Go 1.12-1.14, add module support
2 parents 7a9d26e + 377c1d1 commit 413bd8b

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

.travis.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
language: go
22
go:
3-
- 1.8
4-
- 1.9
5-
- '1.10'
6-
install:
7-
- go get -u github.com/golang/dep/cmd/dep
8-
- dep ensure
3+
- '1.12'
4+
- '1.13'
5+
- '1.14'
6+
env:
7+
- GO111MODULE=on
98
script:
10-
- go test -coverprofile=coverage.txt -covermode=atomic -v $(go list ./... | grep -v
11-
"/vendor/")
9+
- go test -coverprofile=coverage.txt -covermode=atomic -v $(go list ./... | grep -v "/vendor/")
1210
after_success:
1311
- bash <(curl -s https://codecov.io/bash)
1412
notifications:

go.mod

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module github.com/istreamlabs/go-metrics
2+
3+
go 1.12
4+
5+
require (
6+
github.com/DataDog/datadog-go v2.3.0+incompatible
7+
github.com/mattn/go-colorable v0.0.9
8+
github.com/mattn/go-isatty v0.0.3
9+
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
10+
golang.org/x/sys v0.0.0-20180314180151-89ac7f292d17
11+
)

go.sum

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
github.com/DataDog/datadog-go v2.2.0+incompatible h1:V5BKkxACZLjzHjSgBbr2gvLA2Ae49yhc6CSY7MLy5k4=
2+
github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
3+
github.com/DataDog/datadog-go v2.3.0+incompatible h1:ypCT7tHzMUrUKjdHX6GGEsGq0yi0IYMaljwN5b6hbIc=
4+
github.com/DataDog/datadog-go v2.3.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
5+
github.com/mattn/go-colorable v0.0.9 h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=
6+
github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
7+
github.com/mattn/go-isatty v0.0.3 h1:ns/ykhmWi7G9O+8a448SecJU3nSMBXJfqQkl0upE1jI=
8+
github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4=
9+
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b h1:j7+1HpAFS1zy5+Q4qx1fWh90gTKwiN4QCGoY9TWyyO4=
10+
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod h1:01TrycV0kFyexm33Z7vhZRXopbI8J3TDReVlkTgMUxE=
11+
golang.org/x/sys v0.0.0-20180314180151-89ac7f292d17 h1:N8O/0j49esAfvJVDdHct24vdhaAPxjtIUhpkpX+7E5Y=
12+
golang.org/x/sys v0.0.0-20180314180151-89ac7f292d17/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=

0 commit comments

Comments
 (0)