kinesis-consumer/.travis.yml

22 lines
479 B
YAML
Raw Normal View History

2019-02-18 18:43:15 +00:00
language: go
2019-02-18 18:51:48 +00:00
# Setup database services required during tests.
services:
- redis-server
2019-02-18 18:43:15 +00:00
# Force-enable Go modules. This will be unnecessary when Go 1.12 lands.
env:
- GO111MODULE=on
# You don't need to test on very old version of the Go compiler. It's the user's
# responsibility to keep their compilers up to date.
go:
2019-02-18 18:49:28 +00:00
- "1.10"
2019-02-18 18:43:15 +00:00
# Only clone the most recent commit.
git:
depth: 1
script:
- go test -v -race ./... # Run all the tests with the race detector enabled