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 b5d2d9b commit 161e14fCopy full SHA for 161e14f
.github/workflows/docs.yml
@@ -10,14 +10,10 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
13
- - name: Set up Python
14
- uses: actions/setup-python@v4
15
- with:
16
- python-version: '3.x'
17
- - name: Install dependencies
18
- run: |
19
- python -m pip install --upgrade pip
20
- pip install sphinx myst-parser sphinx-rtd-theme
+ - name: Set up uv
+ uses: astral-sh/setup-uv@v5
+ - name: Install the project
+ run: uv sync
21
- name: Build HTML
22
run: sphinx-build -b html docs/source docs/_build/html
23
- name: Deploy to GitHub Pages
0 commit comments