blob: 5a8030accc51a4636b1c05f0951bf88ac87afa1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -ex
go test ./...
if [ "$TRAVIS_GO_VERSION" = "1.6" ]; then
GOARCH=386 go test ./...
go tool vet -example .
go get github.com/client9/misspell/cmd/misspell
go get github.com/soniakeys/vetc
misspell -error * */* */*/*
vetc
fi
|