mirror of
https://github.com/anomalyco/opencode-sdk-python.git
synced 2026-04-28 04:29:50 +00:00
11 lines
163 B
Bash
Executable file
11 lines
163 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Running lints"
|
|
rye run lint
|
|
|
|
echo "==> Making sure it imports"
|
|
rye run python -c 'import opencode'
|