8 lines
55 B
Bash
8 lines
55 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
cd `dirname $0`/..
|
||
|
|
||
|
go build
|
||
|
go test
|