We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daa45dd commit 32d97a4Copy full SHA for 32d97a4
.github/workflows/build.yml
@@ -40,14 +40,17 @@ jobs:
40
41
- name: Install uv
42
uses: astral-sh/setup-uv@v2
43
-
+ with:
44
+ enable-cache: true
45
+ cache-dependency-glob: "uv.lock"
46
+
47
- name: "Set up Python"
48
uses: actions/setup-python@v5
49
with:
50
python-version-file: ".python-version"
51
52
- name: Install Sphinx and requirements
- run: uv pip install --system --break-system-packages -r pyproject.toml
53
+ run: uv sync
54
55
- name: Configure
56
run: |
@@ -68,7 +71,7 @@ jobs:
68
71
- name: Build Sphinx
69
72
70
73
cd source
- sphinx-build -j auto -E . ../public
74
+ uv run sphinx-build -j auto -E . ../public
75
cd ..
76
git status
77
shell: bash
0 commit comments