mirror of
https://github.com/matrix-org/gomatrix
synced 2025-05-12 18:44:55 +00:00
9 lines
107 B
Bash
Executable file
9 lines
107 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
golint
|
|
go fmt
|
|
go tool vet --shadow .
|
|
gocyclo -over 12 .
|
|
go test -timeout 5s -test.v
|