From 504b119742a7cb3325244eece973fc9572dc239a Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Fri, 28 Oct 2016 23:14:06 +0800 Subject: [PATCH] remove coveralls services. Signed-off-by: Bo-Yi Wu --- .travis.yml | 3 --- README.md | 5 ++--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 46cbbf52..ca28c109 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,12 +8,9 @@ go: - tip script: - - go get golang.org/x/tools/cmd/cover - - go get github.com/mattn/goveralls - go test -v -covermode=count -coverprofile=coverage.out after_success: - - goveralls -coverprofile=coverage.out -service=travis-ci -repotoken yFj7FrCeddvBzUaaCyG33jCLfWXeb93eA - bash <(curl -s https://codecov.io/bash) notifications: diff --git a/README.md b/README.md index 5ec78f81..f47559b9 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,15 @@ #Gin Web Framework + [![Build Status](https://travis-ci.org/gin-gonic/gin.svg)](https://travis-ci.org/gin-gonic/gin) -[![Coverage Status](https://coveralls.io/repos/gin-gonic/gin/badge.svg?branch=master)](https://coveralls.io/r/gin-gonic/gin?branch=master) +[![codecov](https://codecov.io/gh/gin-gonic/gin/branch/master/graph/badge.svg)](https://codecov.io/gh/gin-gonic/gin) [![Go Report Card](https://goreportcard.com/badge/github.com/gin-gonic/gin)](https://goreportcard.com/report/github.com/gin-gonic/gin) [![GoDoc](https://godoc.org/github.com/gin-gonic/gin?status.svg)](https://godoc.org/github.com/gin-gonic/gin) [![Join the chat at https://gitter.im/gin-gonic/gin](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gin-gonic/gin?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Gin is a web framework written in Go (Golang). It features a martini-like API with much better performance, up to 40 times faster thanks to [httprouter](https://github.com/julienschmidt/httprouter). If you need performance and good productivity, you will love Gin. - - ![Gin console logger](https://gin-gonic.github.io/gin/other/console.png) ```sh