6393ec357e
This was previously at https://github.com/vector-im/riot-web/blob/develop/scripts/rageshake.go, but it's not really exclusive to riot-web, and given I'm about to add some more complexity to it, I'd like for it to be in its own repo.
9 lines
112 B
Bash
Executable file
9 lines
112 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
golint src/...
|
|
go fmt ./src/...
|
|
go tool vet --shadow ./src
|
|
gocyclo -over 12 src/
|
|
gb test
|