docs/developer_docs/testing/ci-cd.md
š§ Coming Soon š§
Understanding Superset's continuous integration and deployment pipelines.
# Install pre-commit hooks
pre-commit install
# Run all hooks on staged files
pre-commit run
# Run specific hook
pre-commit run mypy
# Run on all files (not just staged)
pre-commit run --all-files
Key workflows:
test-frontend.yml - Frontend teststest-backend.yml - Backend testsdocker.yml - Docker image buildscodeql.yml - Security analysisrelease.yml - Release automationThis documentation is under active development. Check back soon for updates!