Add TravisCI setup (#83)
We've had a few PRs hit master without running the test, this should help make sure we always know the PR status before merging.
This commit is contained in:
parent
245d1bd6b5
commit
8fd7675ea4
2 changed files with 12 additions and 0 deletions
10
.travis.yml
Normal file
10
.travis.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
language: go
|
||||||
|
services:
|
||||||
|
- redis-server
|
||||||
|
go:
|
||||||
|
- "1.10"
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
script:
|
||||||
|
- go test -v -race ./...
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
# Golang Kinesis Consumer
|
# Golang Kinesis Consumer
|
||||||
|
|
||||||
|
[](https://travis-ci.com/harlow/kinesis-consumer) [](https://godoc.org/github.com/harlow/kinesis-consumers)
|
||||||
|
|
||||||
Kinesis consumer applications written in Go. This library is intended to be a lightweight wrapper around the Kinesis API to read records, save checkpoints (with swappable backends), and gracefully recover from service timeouts/errors.
|
Kinesis consumer applications written in Go. This library is intended to be a lightweight wrapper around the Kinesis API to read records, save checkpoints (with swappable backends), and gracefully recover from service timeouts/errors.
|
||||||
|
|
||||||
__Alternate serverless options:__
|
__Alternate serverless options:__
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue