mirror of
https://github.com/anomalyco/opencode-sdk-go.git
synced 2026-05-01 22:10:27 +00:00
11 lines
154 B
Bash
Executable file
11 lines
154 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Running Go build"
|
|
go build ./...
|
|
|
|
echo "==> Checking tests compile"
|
|
go test -run=^$ ./...
|