mirror of
https://github.com/run-llama/llama-cloud-py.git
synced 2026-08-24 10:52:54 -04:00
17 lines
263 B
Bash
Executable File
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'
|