Feat/interview scheduling agent #26
Merged
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.
This pull request introduces a new GitHub Actions CI pipeline and refactors several backend API route files for improved readability, consistency, and modern Python typing. The main themes are infrastructure automation and code cleanup, focusing on import ordering, type annotations, and formatting for better maintainability.
Infrastructure:
.github/workflows/ci.ymlto automate backend (Python linting with Ruff) and frontend (ESLint) checks on pushes and pull requests tomain/devbranches. This ensures code quality and consistency across the project.API Route Refactoring:
list[Type]anddict[str, Type]) instead ofList/Dictfromtyping, providing cleaner and more modern type hints. [1] [2] [3]applications.py,auth.py,jobs.py,profile.py,resume.py) for clarity and PEP8 compliance. [1] [2] [3] F14abb34L1, [4]HTTPExceptiondetails for multi-line readability and updating exception blocks for better clarity. [1] [2] [3] [4] [5]Other Minor Cleanups:
backend/alembic/env.pyand API route modules. (F2bdc8edL1, backend/app/api/v1/init.pyL7-R17)These changes collectively enhance code quality, enforce consistent standards, and add automated checks for future development.