blob: 6a6ec2eb069186414ee19fcb56be089cad25bae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: go
go:
- 1.6
script:
# 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
# run tests on a standard platform
- go test -v ./...
|