Codebase list golang-github-thejerf-suture / 735bf0f9-61d5-4ba1-8eb9-880f85dcea2e/main pre-commit
735bf0f9-61d5-4ba1-8eb9-880f85dcea2e/main

Tree @735bf0f9-61d5-4ba1-8eb9-880f85dcea2e/main (Download .tar.gz)

pre-commit @735bf0f9-61d5-4ba1-8eb9-880f85dcea2e/mainraw · history · blame

#!/bin/bash

# This ensures all executables build and all tests pass before a commit
# goes through.

set -v
set -e

CWD=`pwd`

go test
./gml .

echo Build succeeds.
exit 0