mirror of
https://fastgit.cc/https://github.com/anomalyco/opencode
synced 2026-04-24 10:53:23 +08:00
12 lines
154 B
Bash
Executable File
12 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=^$ ./...
|