summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 19cfb4e7c59006d532cca4da3ebc0fd042f1521b (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.3
  - 1.6
  - tip
os:
  - linux
  - osx
matrix:
  allow_failures:
    - go: tip
script:
  - make check
  - go build
  - ./hugo -s docs/
  - ./hugo --renderToMemory -s docs/
install:
  - go get github.com/stretchr/testify
  - go get -v ./...