From 6fbfcacfa07fdaa6bcdc72e90f589b9274657ebe Mon Sep 17 00:00:00 2001 From: Austin Heap Date: Thu, 3 Jul 2014 08:23:03 -0700 Subject: [PATCH 1/3] base travis ci config --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..825dc3f2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: go + +go: + - 1.0 + - 1.1 + - 1.2 + - 1.3 + - tip From 9d4f958ce4c95739bb659c1cc3dc171c542a140d Mon Sep 17 00:00:00 2001 From: Austin Heap Date: Thu, 3 Jul 2014 08:29:44 -0700 Subject: [PATCH 2/3] including build status in readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2a5f117..d9249897 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ #Gin Web Framework [![GoDoc](https://godoc.org/github.com/gin-gonic/gin?status.png)](https://godoc.org/github.com/gin-gonic/gin) +[![Build Status](https://travis-ci.org/gin-gonic/gin.svg)](https://travis-ci.org/gin-gonic/gin) Gin is a web framework written in Golang. It features a martini-like API with much better performance, up to 40 times faster. If you need performance and good productivity, you will love Gin. [Check out the official web site](http://gin-gonic.github.io/gin/) From 48911116ce032f5b7ff61f6e5eba9990777acedf Mon Sep 17 00:00:00 2001 From: Austin Heap Date: Thu, 3 Jul 2014 08:30:00 -0700 Subject: [PATCH 3/3] removing CI for go v1.0 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 825dc3f2..57bd4a76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: go go: - - 1.0 - 1.1 - 1.2 - 1.3