From f2788c929fd2dfcea149c98039f9c478e76eea5a Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Sun, 2 Oct 2016 17:57:59 -0700 Subject: [PATCH] Updating Travis CI config Also removing Makefile --- .travis.yml | 6 ++++-- Makefile | 9 --------- 2 files changed, 4 insertions(+), 11 deletions(-) delete mode 100644 Makefile diff --git a/.travis.yml b/.travis.yml index f166263..62726ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ language: go - -script: go get github.com/golang/protobuf/proto && go get h12.me/socks && go test -v -cover +go: + - 1.7 + - tip +sudo: true diff --git a/Makefile b/Makefile deleted file mode 100644 index 793977e..0000000 --- a/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -all: - go install github.com/s-rah/go-ricochet - -test: - go test -v github.com/s-rah/go-ricochet/... - -cover: - go test github.com/s-rah/go-ricochet/... -cover -