瀏覽代碼

🐛 fix(ci): correct dependency installation command

- update uv pip install command to include --system flag
awwaawwa 1 年之前
父節點
當前提交
3568ff2cb8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      .github/workflows/python-build.yml

+ 1 - 1
.github/workflows/python-build.yml

@@ -16,7 +16,7 @@ jobs:
     - uses: actions/checkout@v4
     - name: Install dependencies
       run: |
-        uv pip install -e .[dev]
+        uv pip install --system -e .[dev]
 
     - name: Test - Code format
       run: |