summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Anderson <[email protected]>2017-01-01 13:39:23 -0800
committerDavid Anderson <[email protected]>2017-01-01 13:39:23 -0800
commit55ba69dad29c3f6b3aec89789fc8a773cd776b28 (patch)
treeebd32dacf859150e807c5f76385f38f7a9e4c570
parentb8a3ed89ade6a84297914e83559ff8cb1b7c5d33 (diff)
Add a Travis CI config.
-rw-r--r--.travis.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..48a2036
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+language: go
+go_import_path: go.universe.tf/tlsrouter
+go:
+ - 1.6
+ - 1.7
+ - tip
+os:
+ - linux
+install:
+ - go get github.com/golang/lint/golint
+before_script:
+script:
+ - go build .
+ - go test .
+ - go vet .
+ - golint .