mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-20 16:42:05 +01:00
10 lines
112 B
Text
10 lines
112 B
Text
|
#! /bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
golint src/...
|
||
|
go fmt ./src/...
|
||
|
go tool vet --shadow ./src
|
||
|
gocyclo -over 12 src/
|
||
|
gb test
|