mirror of
https://github.com/sst/opencode.git
synced 2025-07-10 01:24:59 +00:00
11 lines
146 B
Bash
Executable file
11 lines
146 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=^$ .
|