Skip to content

Commit 8a8a80e

Browse files
committed
chore: use uv to speedup docs building
1 parent acf38e1 commit 8a8a80e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/docs_update-references.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ jobs:
3030
cache-dependency-path: pyproject.toml
3131
- name: Install Dependencies
3232
if: steps.cache.outputs.cache-hit != 'true'
33-
run: pip install -e ".[dev]"
33+
shell: bash
34+
run: |
35+
set -ux
36+
python -m pip install uv
37+
uv pip install --system ".[dev]"
3438
- name: Run build docs
3539
run: bash scripts/build-docs.sh
3640
- name: Commit

.github/workflows/pr_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
set -ux
3333
python -m pip install uv
34-
uv pip install --system -e ".[lint]"
34+
uv pip install --system ".[lint]"
3535
3636
- name: Run ruff
3737
shell: bash

0 commit comments

Comments
 (0)