Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Dec 28, 2025

The workflow runs uv pip install -e . after uv sync --frozen, which is redundant. uv sync already installs the project in editable mode when configured in pyproject.toml.

Changes

  • Removed uv pip install -e . from both code-quality and rust-backend jobs in .github/workflows/code_quality.yml
  • Both jobs now only run uv sync --frozen --extra dev for dependency installation

This eliminates the redundant installation step that could potentially install into a different environment than the one created by uv sync.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

@sonarqubecloud
Copy link

Copilot AI changed the title [WIP] Update code quality workflow enhancements based on feedback Remove redundant uv pip install step after uv sync Dec 28, 2025
@jacksonpradolima jacksonpradolima marked this pull request as ready for review December 28, 2025 01:34
Copilot AI review requested due to automatic review settings December 28, 2025 01:34
@jacksonpradolima jacksonpradolima merged commit e791890 into codex/update-github-actions-for-code-quality Dec 28, 2025
29 of 34 checks passed
@jacksonpradolima jacksonpradolima deleted the copilot/sub-pr-134 branch December 28, 2025 01:35
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR removes redundant uv pip install -e . commands that were unnecessarily executed after uv sync --frozen --extra dev in the CI workflow. The uv sync command already installs the project in editable mode based on the pyproject.toml configuration, making the subsequent pip install step unnecessary and potentially problematic.

  • Removed duplicate installation step from the code-quality job
  • Removed duplicate installation step from the rust-backend job

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants