Skip to content

Commit f09d14b

Browse files
MementoRCclaude
andcommitted
fix: align PR checks workflow environment configuration
Fix critical environment mismatch in PR checks workflow: - setup-pixi environments: quality -> ci - Ensures 'ci' environment is installed when workflow runs 'pixi run -e ci' Root cause of "format-check: command not found" (exit code 127): - setup-pixi was installing 'quality' environment - Workflow was trying to run tasks in 'ci' environment - 'ci' environment was never installed, so format-check task unavailable This resolves the core pixi environment alignment issue. Iteration: 5/10 for pixi_command_not_found (environment mismatch) Job: PR Quality Gate, Coverage Check Error: Process completed with exit code 127 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 187d94f commit f09d14b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,12 @@ jobs:
143143
uses: prefix-dev/[email protected]
144144
with:
145145
manifest-path: pyproject.toml
146-
environments: quality
146+
environments: ci
147147
cache: false
148148

149149
- name: Install project in editable mode
150150
shell: bash
151-
run: pixi run -e quality install-editable
151+
run: pixi run -e ci install-editable
152152

153153
- name: Generate coverage report
154154
shell: bash

0 commit comments

Comments
 (0)