Skip to content

Commit

Permalink
readme.md && travis-ci && codecov.io
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquebris committed Jan 14, 2019
1 parent 6e3ecba commit 038f753
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
18 changes: 18 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -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)
15 changes: 15 additions & 0 deletions travis.yml
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 038f753

Please sign in to comment.