Permalink
Browse files

Add travis CI

  • Loading branch information...
1 parent c776406 commit a684ecb4118210cfcd851d553b82d25860976e39 @etix committed Jun 16, 2017
Showing with 26 additions and 0 deletions.
  1. +26 −0 .travis.yml
View
@@ -0,0 +1,26 @@
+language: go
+sudo: required
+
+go:
+ - 1.7.6
+ - 1.8.3
+ - tip
+
+os:
+ - linux
+
+matrix:
+ allow_failures:
+ - go: tip
+
+before_install:
+ - sudo apt-get -qq update
+ - sudo apt-get install -y libgeoip-dev
+
+install:
+ - go version
+ - export GOBIN="$GOPATH/bin"
+ - export PATH="$PATH:$GOBIN"
+ - go env
+
+after_script: make test

0 comments on commit a684ecb

Please sign in to comment.