File: .travis.yml

package info (click to toggle)
golang-gopkg-redis.v2 2.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 280 kB
  • sloc: makefile: 6
file content (19 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: go

services:
- redis-server

go:
  - 1.1
  - 1.2
  - 1.3
  - tip

install:
  - go get gopkg.in/bufio.v1
  - go get gopkg.in/check.v1
  - mkdir -p $HOME/gopath/src/gopkg.in
  - ln -s `pwd` $HOME/gopath/src/gopkg.in/redis.v2

before_script:
  - redis-server testdata/sentinel.conf --sentinel &