47d49c6b92
* Add a go.mod file * run go mod vendor again * Move to a well-supported ini file reader * Remove GO111MODULE=off * Use go 1.16 * Rename github.com/outbrain/golib -> github.com/openark/golib * Remove *.go-e files * Fix for `strconv.ParseInt: parsing "": invalid syntax` error * Add test for '[osc]' section Co-authored-by: Nate Wernimont <nate.wernimont@workiva.com>
18 lines
260 B
Bash
Executable File
18 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. script/bootstrap
|
|
|
|
echo "Verifying code is formatted via 'gofmt -s -w go/'"
|
|
gofmt -s -w go/
|
|
git diff --exit-code --quiet
|
|
|
|
echo "Building"
|
|
script/build
|
|
|
|
cd .gopath/src/github.com/github/gh-ost
|
|
|
|
echo "Running unit tests"
|
|
go test ./go/...
|