mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-05 11:00:43 +00:00
20 lines
217 B
YAML
20 lines
217 B
YAML
|
|
||
|
pipeline:
|
||
|
test:
|
||
|
image: golang:${GO_VERSION}
|
||
|
commands:
|
||
|
- go test -v ./...
|
||
|
|
||
|
services:
|
||
|
redis:
|
||
|
image: redis:${REDIS_VERSION}
|
||
|
|
||
|
matrix:
|
||
|
GO_VERSION:
|
||
|
- 1.11
|
||
|
- 1.10
|
||
|
|
||
|
REDIS_VERSION:
|
||
|
- 2.6
|
||
|
- 2.8
|