mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-20 17:24:22 +01:00
12 lines
146 B
Bash
Executable File
12 lines
146 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Running Go build"
|
|
go build .
|
|
|
|
# Compile the tests but don't run them
|
|
go test -c .
|