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 2cc1c9d commit c8dde40Copy full SHA for c8dde40
.github/workflows/static-gh-pages.yml
@@ -10,21 +10,21 @@ jobs:
10
name: publish documentation
11
steps:
12
- uses: actions/checkout@v4
13
- - name: Setup Python
14
- uses: actions/setup-python@v4
+ - name: Install uv
+ uses: astral-sh/setup-uv@v5
15
with:
16
python-version: '3.10'
17
-
18
- - name: install dependencies pip
19
- run: |
20
- python3 -m pip install -U pip
21
- python3 -m pip install .[doc]
+
+ - name: Install the project
+ run:
+ uv sync --group=doc
22
23
- name: make docs
24
run: |
25
- make -C docs clean
26
- make -C docs html
27
+ cd docs
+ uv run --no-sync make html
28
- name: Init repo for generated files
29
30
cd docs/_build/html
0 commit comments