source: code/trunk/.travis.yml@ 74

Last change on this file since 74 was 73, checked in by asciimoo, 8 years ago

[mod] change tip go version in travis to 1.8.3

File size: 357 bytes
Line 
1language: go
2
3go:
4 - 1.6
5 - 1.7
6 - 1.8.3
7
8script:
9 # static checks
10 - test -z "$(gofmt -l ./)"
11 - test -z "$(go vet -v ./...)"
12
13 # run tests on a standard platform
14 - go test -v ./...
15
16 # build test for supported platforms
17 - GOOS=linux go build
18 - GOOS=darwin go build
19 - GOOS=freebsd go build
20 - GOOS=windows go build
21 - GOARCH=386 go build
Note: See TracBrowser for help on using the repository browser.