Feat/add ci quality gates#222
Closed
AAdewunmi wants to merge 3 commits into
Closed
Conversation
Closed
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds CI quality gates in GitHub Actions so every branch push and pull request runs the same validation workflow.
Changes
ruff check .black --check .pytest --cov=. --cov-report=term-missing --cov-report=xml --cov-fail-under=85 -qcoverage.xmlBehavior
On every push and every pull request, GitHub Actions now runs the same CI job against the repository. The workflow starts PostgreSQL, installs dependencies, applies migrations, checks lint and formatting, then runs the test suite with coverage enforcement.
Why
This creates a consistent merge gate across branch updates instead of relying only on local checks or PR timing. It reduces the chance of formatting issues, lint violations, migration drift, or test regressions landing unnoticed.
Validation
The workflow is configured to run:
python manage.py migrateruff check .black --check .pytest --cov=. --cov-report=term-missing --cov-report=xml --cov-fail-under=85 -qResult
Every branch update now receives the same automated quality checks, with coverage reported and enforced in CI.
Notes
pushevents, not just selected branchesCODECOV_TOKENsecret in GitHubDJANGO_SECRET_KEYandPOSTGRES_*variables rather thanSECRET_KEYorDATABASE_URL