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.
2 parents a7cd577 + 161e14f commit a6ac8f5Copy full SHA for a6ac8f5
.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