fix: correct CI dependency installation path
Some checks failed
CI / test (push) Failing after 4m45s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-31 16:17:00 +00:00
parent 08b5c2462c
commit cac6a5c810

View File

@@ -45,8 +45,12 @@ jobs:
- name: Build package - name: Build package
run: | run: |
cd local_code_assistant
pip install build pip install build
python -m build python -m build
- name: Verify package - name: Verify package
run: pip install dist/*.whl && local-code-assistant --version || echo "Package installed successfully" run: |
cd local_code_assistant
pip install dist/*.whl
local-code-assistant --version || echo "Package installed successfully"