File tree Expand file tree Collapse file tree 3 files changed +306
-3
lines changed Expand file tree Collapse file tree 3 files changed +306
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,25 @@ jobs:
17
17
url : ${{ steps.deployment.outputs.page_url }}
18
18
steps :
19
19
- uses : actions/checkout@v5
20
+
20
21
- uses : actions/setup-python@v5
21
22
with :
22
- python-version : ' 3.12'
23
- - run : pip install mkdocs mkdocs-material mkdocstrings[python]
24
- - run : mkdocs build
23
+ python-version : ' 3.11'
24
+
25
+ - name : Install uv
26
+ uses : astral-sh/setup-uv@v5
27
+
28
+ - name : Install project and docs dependencies
29
+ run : make install
30
+
31
+ - name : Build documentation
32
+ run : uv run mkdocs build
33
+
25
34
- uses : actions/configure-pages@v5
35
+
26
36
- uses : actions/upload-pages-artifact@v3
27
37
with :
28
38
path : ./site
39
+
29
40
- id : deployment
30
41
uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change @@ -76,6 +76,12 @@ types = [
76
76
" pandas-stubs" ,
77
77
]
78
78
79
+ docs = [
80
+ " mkdocs" ,
81
+ " mkdocs-material" ,
82
+ " mkdocstrings[python]" ,
83
+ ]
84
+
79
85
[project .optional-dependencies ]
80
86
redis = [" redis>=4.0.0" ]
81
87
You can’t perform that action at this time.
0 commit comments