11 lines
166 B
YAML
11 lines
166 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.8.x
|
|
# - 1.9.x
|
|
|
|
dist: trusty
|
|
|
|
script:
|
|
- go test .
|
|
- unformatted="$(gofmt -l .)"; ! [ -z "${unformatted}" ] && echo "${unformatted}" && exit 1
|