From 29eb7b0e468d6dd346fffe832e4233c8f876a99b Mon Sep 17 00:00:00 2001 From: Alex Payne Date: Sun, 14 Sep 2014 11:50:08 -0700 Subject: [PATCH] Updated Travis CI configuration. - Move to more recent version of Go, setting aside 1.1. - Use `install` instead of `before_script` to install library dependencies, as per [documentation](http://docs.travis-ci.com/user/languages/go/). --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2efbc54..2c5ec79 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ language: go go: - - 1.1 - 1.2 + - 1.3 - tip -before_script: +install: - go get github.com/stretchr/testify + - go get github.com/stvp/go-udp-testing