Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pre-commit checks to quality workflows (#25)
## Summary Enhances our CI/CD pipeline by introducing pre-commit checks to the quality workflows. This ensures pre-check standards and requirements are enforced even if developers do not install pre-commit locally and won't break for others. ## Details - Added a new job to the `.github/workflows/quality.yml` file that runs pre-commit checks. - This job runs on `ubuntu-latest` and is configured to set up Python 3.8, install pre-commit, and run the pre-commit checks on all files. - Ensures that code quality checks must pass before merging, improving code consistency and reducing errors. ## Test Plan - Automated Testing: Verifying with this diff that the new github actions will pass
- Loading branch information