yukari/.travis.yml
asciimoo 4ac0f9cfd7 [enh] add travis config
git-svn-id: file:///srv/svn/repo/yukari/trunk@54 f3bd38d9-da89-464d-a02a-eb04e43141b5
2016-11-30 00:10:19 +00:00

22 lines
355 B
YAML

language: go
go:
- 1.6
- 1.7
- tip
script:
# static checks
- test -z "$(gofmt -l ./)"
- test -z "$(go vet -v ./...)"
# run tests on a standard platform
- go test -v ./...
# build test for supported platforms
- GOOS=linux go build
- GOOS=darwin go build
- GOOS=freebsd go build
- GOOS=windows go build
- GOARCH=386 go build