mirror of https://github.com/matrix-org/gomatrix
10 lines
107 B
Plaintext
10 lines
107 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
golint
|
||
|
go fmt
|
||
|
go tool vet --shadow .
|
||
|
gocyclo -over 12 .
|
||
|
go test -timeout 5s -test.v
|