fix: change step's shell for windows

This commit is contained in:
Junya Morioka
2025-12-16 22:04:59 +09:00
parent 1bbe3b0ca9
commit 9efebf9016
+4 -4
View File
@@ -52,12 +52,12 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install Python
shell: bash
shell: pwsh
run: |
uv venv -p ${{ inputs.python-version }}
uv pip install -U pip setuptools==75.8.0 wheel packaging psutil ninja auditwheel
current_dir=$(pwd)
echo "$current_dir/.venv/Scripts" >> $GITHUB_PATH
uv pip install -U pip setuptools==75.8.0 wheel packaging psutil numpy ninja auditwheel
$current_dir = (Get-Location).Path
echo "$current_dir\.venv\Scripts" >> $env:GITHUB_PATH
- uses: mjun0812/setup-cuda@v1
with: