Skip to content
Snippets Groups Projects
Commit 6cbf9947 authored by Kevin Lyda's avatar Kevin Lyda :speech_balloon:
Browse files

Add a test/precommit script.

parent 7086069f
No related branches found
No related tags found
No related merge requests found
#! /bin/sh
# This can be used as a pre-commit script. Just run
# cp run_tests.sh .git/hooks/pre-commit
# and it will run before each commit.
set -xue
go install -v ./cmd/*
go list ./... |grep -v vendor/ |xargs go test
gofmt -d $(find * -type f -name '*.go' -not -path 'vendor/*')
go list ./... |grep -v vendor/ |xargs go vet
if ! type -f golint > /dev/null; then
go get -u github.com/golang/lint/golint
fi
go list ./... |grep -v vendor/ |xargs -L1 golint -set_exit_status
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment