From 011ae2db3fa412cdecab6076ce92f79afd6cee25 Mon Sep 17 00:00:00 2001 From: Matthias Rampke Date: Sat, 26 Sep 2015 17:29:24 +0200 Subject: [PATCH] update travis * use new Travis infrastructure * specify Go versions (1.4.3, 1.5.1, tip) * bypass the makefile to really build with all versions --- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 50fbe5ac..bd168357 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,13 @@ +sudo: false + language: go +go: + - 1.4.3 + - 1.5.1 + - tip + +install: + - go get -d script: - - make test + - go test -v ./...