mirror of
https://github.com/openai/openai-go.git
synced 2026-03-31 16:47:11 +09:00
15 lines
214 B
Bash
Executable File
15 lines
214 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=^$ ./...
|
|
|
|
echo "==> Building examples"
|
|
cd examples && go build ./...
|