From 9ae1e4111c9f01f50aa168e5b95c1ce66df4e05a Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 30 Oct 2017 00:05:56 +0100 Subject: [PATCH] Updated badges and added travisci file --- README.md | 8 +++++--- travisci.yml | 8 ++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 travisci.yml 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