summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 819339002f8d29d4321118bd913558bbc7402a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: go
sudo: false
go:
  - 1.5.4
  - 1.6.1
  - tip
os:
  - linux
  - osx
matrix:
  allow_failures:
    - go: tip
script:
  - make check
  - go build -race
  - ./hugo -s docs/
  - ./hugo --renderToMemory -s docs/
install:
  - go get github.com/stretchr/testify
  - go get -v ./...