Skip to content

Commit 54e4326

Browse files
committed
Fix CI
1 parent 348bdda commit 54e4326

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

.travis.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
language: go
22
sudo: false
33
go:
4-
- 1.2
5-
- 1.3
64
- 1.4
75
- 1.5
6+
- 1.6
7+
- 1.7
88
install:
9-
- go get github.com/onsi/ginkgo
10-
- go get github.com/onsi/gomega
11-
- mkdir -p $GOPATH/src/gopkg.in/bsm
12-
- mv $GOPATH/src/github.com/bsm/openrtb $GOPATH/src/gopkg.in/bsm/openrtb.v2
13-
- cd $GOPATH/src/gopkg.in/bsm/openrtb.v2
9+
- go get -u -t ./...

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
default: test
1+
default: vet test
22

3-
deps:
4-
go get -t ./...
5-
6-
test: deps
3+
test:
74
go test ./...
5+
6+
vet:
7+
go vet ./...

openrtb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package openrtb // import "gopkg.in/bsm/openrtb.v2"
1+
package openrtb
22

33
import "encoding/json"
44

0 commit comments

Comments
 (0)