-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
readme.md && travis-ci && codecov.io
- Loading branch information
1 parent
6e3ecba
commit 038f753
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |