Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Dec 28, 2025

Fixes shell syntax error introduced in the Rust backend build step that caused CI to fail with "unexpected EOF while looking for matching `"'".

Changes

  • Removed typo "nv" from printf command in .github/workflows/code_quality.yml line 75
  • The malformed string "$HOME/.cargo/env"nv" is now correctly written as "$HOME/.cargo/env"

Context

The error occurred in the step that creates a no-op cargo env file to prevent the Makefile from failing when sourcing $HOME/.cargo/env (which doesn't exist when using dtolnay/rust-toolchain@stable).

- printf '# no-op cargo env for CI; Rust is already available in PATH\n' > "$HOME/.cargo/env"nv"
+ printf '# no-op cargo env for CI; Rust is already available in PATH\n' > "$HOME/.cargo/env"

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI changed the title [WIP] Fix code quality workflow in UV matrix and Rust backend job Fix shell syntax error in code_quality.yml workflow Dec 28, 2025
@sonarqubecloud
Copy link

@jacksonpradolima jacksonpradolima marked this pull request as ready for review December 28, 2025 01:38
Copilot AI review requested due to automatic review settings December 28, 2025 01:38
@jacksonpradolima jacksonpradolima merged commit 1de0db5 into codex/update-github-actions-for-code-quality Dec 28, 2025
25 checks passed
@jacksonpradolima jacksonpradolima deleted the copilot/sub-pr-134-again branch December 28, 2025 01:38
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 fixes a critical shell syntax error in the GitHub Actions workflow that was preventing CI from passing. The error was caused by a typo where extra characters ("nv") were accidentally appended to a file redirection command, resulting in malformed shell syntax.

Key Change:

  • Removed the typo "nv" from the printf command in the Rust backend build step

💡 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