mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
802d43cbfd
There is one failing test there now, a odd filesystem issue. Since Go 1.7 is only "days" away, I'm not spending time debugging this.
22 lines
353 B
YAML
22 lines
353 B
YAML
language: go
|
|
sudo: required
|
|
go:
|
|
- 1.6.3
|
|
- tip
|
|
os:
|
|
- linux
|
|
- osx
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
script:
|
|
- make check
|
|
- go build -race
|
|
- ./hugo -s docs/
|
|
- ./hugo --renderToMemory -s docs/
|
|
before_install:
|
|
- gem install asciidoctor
|
|
- sudo pip install docutils
|
|
install:
|
|
- go get github.com/stretchr/testify
|
|
- go get -v ./...
|