We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7083362 commit 92cab95Copy full SHA for 92cab95
1 file changed
.github/workflows/nvidia_model_workflow.yml
@@ -36,12 +36,17 @@ jobs:
36
# Now write to file (won't be logged since it's masked)
37
echo "$PAYLOAD" > payload.json
38
39
+ - name: Install uv
40
+ uses: astral-sh/setup-uv@v4
41
+
42
- name: Setup Virtual Environment and Install Dependencies
43
shell: bash
44
run: |
- pip install --upgrade pip
- pip install -r "requirements-dev.txt"
- pip install -e .
45
+ uv venv .venv
46
+ echo "VIRTUAL_ENV=$PWD/.venv" >> $GITHUB_ENV
47
+ echo "$PWD/.venv/bin" >> $GITHUB_PATH
48
+ uv pip install -r "requirements-dev.txt"
49
+ uv pip install -e .
50
51
- name: Run model benchmark
52
0 commit comments