mirror of
https://github.com/octoleo/syncthing.git
synced 2025-02-06 05:48:26 +00:00
18 lines
175 B
Plaintext
18 lines
175 B
Plaintext
|
#!/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
|
||
|
|
||
|
|