mirror of
https://github.com/boshu2/agentops.git
synced 2026-09-14 15:08:13 +08:00
13 lines
306 B
Bash
Executable File
13 lines
306 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
|
|
cd "$ROOT"
|
|
|
|
bash scripts/check-docs-cli-snippets.sh
|
|
bats tests/cli_contract_gate.bats
|
|
bash scripts/generate-cli-reference.sh --check
|
|
bash scripts/check-cmdao-surface-parity.sh
|
|
|
|
printf 'check-cli-contract: PASS\n'
|