blob: 0c19e2cd51b6f0575773488728694912ff1ba066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
sudo: false
language: go
go:
- 1.7
- 1.8
- 1.9
# 1.x builds the latest in that series. Also try to add other versions here
# as they come up so that we're pretty sure that we're maintaining
# backwards compatibility.
- 1.x
notifications:
email: false
services:
- redis-server
install: make get-deps
script: make
|