Skip to content

Commit b34f200

Browse files
committed
fix(ci): Use python3
1 parent 1cd3f2c commit b34f200

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ jobs:
126126

127127
- name: Install dependencies (Linux/MacOS)
128128
run: |
129-
python -m pip install --upgrade pip
130-
python -m pip install uv
131-
python -m uv pip install -e .[all] --verbose
132-
CMAKE_ARGS="-DLLAMA_METAL=off" python -m uv pip install .[all] --verbose
129+
python3 -m pip install --upgrade pip
130+
python3 -m pip install uv
131+
python3 -m uv pip install -e .[all] --verbose
132+
CMAKE_ARGS="-DLLAMA_METAL=off" python3 -m uv pip install .[all] --verbose
133133
shell: bash
134134

135135
- name: Test with pytest
136136
run: |
137-
python -m pytest
137+
python3 -m pytest
138138
139139
build-macos-metal:
140140
needs: download-model

0 commit comments

Comments
 (0)