Skip to content

Commit cbfcfd4

Browse files
MementoRCclaude
andcommitted
fix: use direct pip install instead of pixi task
- Replace pixi run ci-install with direct pip install -e . - Avoid potential task execution issues in CI environment - Use explicit pixi run -e quality pip install pattern Iteration: 3/10 Job: Quick Status Check Error: Process completed with exit code 1 - task execution issue 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e0e4a29 commit cbfcfd4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/status.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
4242
- name: Install project dependencies
4343
run: |
44-
pixi run -e quality ci-install
44+
echo "📦 Installing project in editable mode..."
45+
pixi run -e quality pip install -e .
4546
4647
- name: Quick smoke test
4748
run: |

0 commit comments

Comments
 (0)