13 lines
140 B
Plaintext
13 lines
140 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
. script/bootstrap
|
||
|
|
||
|
script/build
|
||
|
|
||
|
export GITBACKUPS_ENV=test
|
||
|
|
||
|
cd .gopath/src/github.com/github/gh-ost
|
||
|
go test ./go/...
|