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