-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck.sh
More file actions
executable file
·27 lines (21 loc) · 664 Bytes
/
check.sh
File metadata and controls
executable file
·27 lines (21 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
# Run all code quality checks
set -e
echo "🚀 Running all code quality checks..."
echo ""
echo "=========================================="
echo "1️⃣ Code Formatting Check (Black)"
echo "=========================================="
uv run black --check backend/
echo ""
echo "=========================================="
echo "2️⃣ Linting (Ruff)"
echo "=========================================="
uv run ruff check backend/
echo ""
echo "=========================================="
echo "3️⃣ Type Checking (mypy)"
echo "=========================================="
uv run mypy backend/
echo ""
echo "✅ All quality checks passed!"