aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/docs.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/docs.yml')
-rw-r--r--.github/workflows/docs.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index a23e264..a5f55eb 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -25,14 +25,15 @@ jobs:
cache: "pip"
cache-dependency-path: "requirements*.txt"
+ - name: Install uv
+ uses: astral-sh/setup-uv@v6
+ with:
+ enable-cache: true
+
- name: Install dependencies
- run: |
- pip install --upgrade pip wheel
- pip install tox
- sudo apt-get install enchant-2
+ run: sudo apt-get install enchant-2
- name: Build docs with tox
env:
TOX_ENV: docs
- run: |
- tox -e $TOX_ENV
+ run: uvx tox -e $TOX_ENV