mirror of
https://github.com/thinking-machines-lab/tinker.git
synced 2026-04-19 12:58:01 +00:00
17 lines
248 B
Bash
Executable file
17 lines
248 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Running ruff"
|
|
uv run ruff check .
|
|
|
|
echo "==> Running pyright"
|
|
uv run pyright
|
|
|
|
echo "==> Running mypy"
|
|
uv run mypy .
|
|
|
|
echo "==> Making sure it imports"
|
|
uv run python -c 'import tinker'
|