Spaces:
Paused
Paused
File size: 244 Bytes
4ae946d | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
set -e
echo "🔍 Running Type Checks..."
mypy backend/app/modules --config-file backend/mypy.ini || echo "⚠️ Type checks failed (see above)"
echo "🧹 Running Linters..."
# Placeholder for linting commands
echo "✅ Done!"
|