hugo/.travis.yml

23 lines
353 B
YAML
Raw Normal View History

language: go
sudo: required
go:
2016-07-18 21:46:37 +00:00
- 1.6.3
- tip
os:
- linux
- osx
matrix:
allow_failures:
- go: tip
script:
2016-03-22 19:35:02 +00:00
- make check
- go build -race
- ./hugo -s docs/
- ./hugo --renderToMemory -s docs/
2016-07-04 09:06:18 +00:00
before_install:
- gem install asciidoctor
- sudo pip install docutils
install:
- go get github.com/stretchr/testify
- go get -v ./...