2017-02-03 13:52:32 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
golint src/...
|
|
|
|
go fmt ./src/...
|
2017-05-18 11:27:11 +00:00
|
|
|
go tool vet --all --shadow ./src
|
2017-02-03 13:52:32 +00:00
|
|
|
gocyclo -over 12 src/
|
|
|
|
gb test
|
2017-05-23 08:12:59 +00:00
|
|
|
|
|
|
|
# Check that all the packages can build.
|
|
|
|
# When `go build` is given multiple packages it won't output anything, and just
|
|
|
|
# checks that everything builds. This seems to do a better job of handling
|
|
|
|
# missing imports than `gb build` does.
|
|
|
|
GOPATH=$(pwd):$(pwd)/vendor go build github.com/matrix-org/dendrite/cmd/...
|