Last active
March 19, 2017 03:38
-
-
Save timotree3/d69b0fb90c8affbd705765abeabc489d to your computer and use it in GitHub Desktop.
My holochain githooks (put in .git/hooks)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -n "$(gofmt -s -l .)" ]; then | |
echo "\`gofmt -s -w .\` your code." | |
exit 1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if make test > /dev/null; then | |
echo "test passed" | |
else | |
echo "test failed" | |
exit 1 | |
fi | |
make publish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment