Files
2025-12-19 05:26:00 +00:00

17 lines
263 B
Bash
Executable File

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
if [ "$1" = "--fix" ]; then
echo "==> Running lints with --fix"
rye run fix:ruff
else
echo "==> Running lints"
rye run lint
fi
echo "==> Making sure it imports"
rye run python -c 'import llama_cloud'