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 756ab1c commit 585abeeCopy full SHA for 585abee
3 files changed
.github/workflows/docs.yml
@@ -1,5 +1,6 @@
1
name: Publish Docs
2
on:
3
+ workflow_dispatch:
4
push:
5
branches:
6
- main
@@ -22,14 +23,13 @@ jobs:
22
23
with:
24
cache: 'pip'
25
- run: |
- cd docs
26
- python -m pip install pyproject.toml
27
-
28
- - name: Build Docs
29
30
git fetch --tags
31
cd docs
32
- sphinx-multiversion docs docs/build
+ python -m venv venv
+ source venv/bin/activate
+ python -m pip install uv sphinx-multiversion
+ python -m pip install -r requirements.txt
+ sphinx-multiversion . build
33
34
- name: Setup Pages
35
uses: actions/configure-pages@v5
.github/workflows/tests.yml
@@ -1,13 +1,10 @@
name: Tests
- push:
- branches:
- - main
- - 1.x
7
pull_request:
8
9
10
- 1.x
+ - 2.x
11
workflow_dispatch:
12
13
jobs:
docs/uv.lock
0 commit comments