Skip to content

Commit 27780fa

Browse files
authored
Merge feature/gomod
2 parents 6b68246 + 4d5686f commit 27780fa

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
language: go
22

3-
before_script: cd $GOPATH/src/github.com/stretchr/testify/ && git checkout v1.2.2 && cd -
3+
before_script: if [[ $TRAVIS_GO_VERSION =~ (^1\.8) ]]; then cd $GOPATH/src/github.com/stretchr/testify/ && git checkout v1.2.2 && cd -; fi
44

55
go:
66
- "1.8.x"
7+
- "1.11.x"
8+
- "1.12.x"
9+
- "1.13.x"
710
- "1.14.x"
8-
- tip
11+
- "1.15.x"
12+
- master
13+
14+
env:
15+
global:
16+
- GO111MODULE=on

go.mod

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module github.com/joomcode/errorx
2+
3+
go 1.11
4+
5+
require (
6+
github.com/davecgh/go-spew v1.1.1 // indirect
7+
github.com/pmezard/go-difflib v1.0.0 // indirect
8+
github.com/stretchr/testify v1.2.2
9+
)

go.sum

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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=
3+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
5+
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
6+
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=

0 commit comments

Comments
 (0)