From 038f753057e40ec2233f9e0ec7d24057430440bc Mon Sep 17 00:00:00 2001 From: Enrique Bris Date: Mon, 14 Jan 2019 11:18:04 -0500 Subject: [PATCH] readme.md && travis-ci && codecov.io --- readme.md | 18 ++++++++++++++++++ travis.yml | 15 +++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 readme.md create mode 100644 travis.yml diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..09d36b2 --- /dev/null +++ b/readme.md @@ -0,0 +1,18 @@ +[![godoc reference](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/enriquebris/goconcurrentqueue) ![version](https://img.shields.io/badge/version-v0.1.0-yellowgreen.svg?style=flat "goconcurrentqueue v0.1.0") [![Go Report Card](https://goreportcard.com/badge/github.com/enriquebris/goconcurrentqueue)](https://goreportcard.com/report/github.com/enriquebris/goconcurrentqueue) [![Build Status](https://travis-ci.org/enriquebris/goconcurrentqueue.svg?branch=master)](https://travis-ci.org/enriquebris/goconcurrentqueue) [![codecov](https://codecov.io/gh/enriquebris/goconcurrentqueue/branch/master/graph/badge.svg)](https://codecov.io/gh/enriquebris/goconcurrentqueue) + +# goconcurrentqueue - Concurrent queues +Concurrent safe queues + +## Installation + +Execute +```bash +go get github.com/enriquebris/goconcurrentqueue +``` + +## Documentation +Visit [goconcurrentqueue at godoc.org](https://godoc.org/github.com/enriquebris/goworkerpool) + +## Qeueues + +- First In First Out (FIFO) \ No newline at end of file diff --git a/travis.yml b/travis.yml new file mode 100644 index 0000000..54c903a --- /dev/null +++ b/travis.yml @@ -0,0 +1,15 @@ +language: go + +go: + - 1.9.x + - 1.10.x + - 1.11.x + +before_install: + - go get -t -v ./... + +script: + - go test -coverprofile=coverage.txt -covermode=atomic + +after_success: + - bash <(curl -s https://codecov.io/bash) \ No newline at end of file