From 25eb6316beb44659f9dada3c54f8d959c591a2b2 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Wed, 22 Oct 2014 21:57:06 -0400 Subject: [PATCH] TravisCI now uses Godep and IRC notices. --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 39f0f17..e449886 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,18 @@ language: go go: 1.3 +before_install: + - go get github.com/tools/godep + +script: + - godep go test ./... + notifications: irc: channels: - "irc.freenode.net#chihaya" + use_notice: true + skip_join: true on_success: always on_failure: always email: false