Skip to content

Commit 4bc7eae

Browse files
committed
install python to generate docs
1 parent 7b6661d commit 4bc7eae

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,15 @@ jobs:
145145
cache-dependency-path: docs/package-lock.json
146146
- name: "Install dependencies"
147147
run: npm install
148-
- name: Install Python dependencies
148+
- name: Set up Python
149+
uses: actions/setup-python@v6
150+
with:
151+
python-version: "3.12"
152+
- name: Install UV
153+
uses: astral-sh/setup-uv@v4
154+
with:
155+
version: "${{ needs.prepare-environment.outputs.UV_VERSION }}"
156+
- name: Install dependencies
149157
run: uv sync --all-groups --all-extras
150158
- name: "Build docs website"
151159
run: "uv run invoke docs"

0 commit comments

Comments
 (0)