Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# GitHub Actions Workflows

## data-pr-checks.yml

Runs all required PR checks for the CDC Lakehouse assignment on every pull request and push to `main`.

| Job | Purpose |
|-----|---------|
| `lint-python-or-sql` | Formatting and code quality (`ruff`, `black`, `sqlfluff`) |
| `test-pipeline` | Unit and integration tests (`pytest`) |
| `validate-models` | dbt model validation (`dbt parse`, `dbt test`) |
| `schema-contract-check` | Schema compatibility checks |
| `data-quality-check` | Business and system validation rules |
| `catalog-check` | Catalog metadata validation |
| `security-and-secrets-scan` | Dependency audit and secrets scan (`pip-audit`, `bandit`, `gitleaks`) |

All 7 jobs should be set as required status checks in branch protection rules before merge.
Loading