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 3c5ab79 commit 0c8f029Copy full SHA for 0c8f029
.github/workflows/docs.yml
@@ -18,11 +18,11 @@ jobs:
18
with:
19
python-version: '3.12'
20
21
- - name: Install documentation generator
22
- run: pip install pdoc
23
-
24
- - name: Generate API documentation
25
- run: pdoc --html src/news_mcp_server --output-dir docs
+ - name: Generate HTML docs with Sphinx
+ run: |
+ pip install sphinx sphinx-rtd-theme sphinx-autodoc-typehints
+ sphinx-apidoc -o docs/source src/news_mcp_server
+ make -C docs html
26
27
- name: Upload docs artifact
28
uses: awalsh128/[email protected]
0 commit comments