diff --git a/README.md b/README.md index 1ec1920..5f85225 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ -# Golang URL Shortener using BoltDB +# Golang URL Shortener [![Build Status](https://travis-ci.org/maxibanki/golang-url-shortener.svg?branch=master)](https://travis-ci.org/maxibanki/golang-url-shortener) +[![GoDoc](https://godoc.org/github.com/maxibanki/golang-url-shortener?status.svg)](https://godoc.org/github.com/maxibanki/golang-url-shortener) [![Go Report Card](https://goreportcard.com/badge/github.com/maxibanki/golang-url-shortener)](https://goreportcard.com/report/github.com/maxibanki/golang-url-shortener) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](http://opensource.org/licenses/MIT) -## Features: +## Main Features: -- URL Shortening with visitor counting +- URL Shortening +- Visitor Counting - Deletion URLs - Authorization System - High Performance database with [bolt](https://github.com/boltdb/bolt) diff --git a/travisci.yml b/travisci.yml new file mode 100644 index 0000000..a5ac4c7 --- /dev/null +++ b/travisci.yml @@ -0,0 +1,8 @@ +language: go +go: + - 1.9.2 + - release + - tip + +script: + - go test -v ./... \ No newline at end of file