File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 23
23
- name : Install Poetry
24
24
uses : snok/install-poetry@v1
25
25
26
+ - name : Installing
27
+ run : poetry install --no-interaction
28
+
29
+ - name : Building documentation
30
+ run : |
31
+ cd docs && make clean && make html
32
+
33
+ - name : Publishing documentation
34
+ run : |
35
+ ghp-import -f -n docs/_build/html
36
+
26
37
- name : Publishing
27
38
env :
28
39
PYPI_TOKEN : ${{ secrets.PYPI_PASSWORD }}
Original file line number Diff line number Diff line change 32
32
# ones.
33
33
extensions = [
34
34
'sphinx.ext.autodoc' ,
35
- 'sphinx.ext.viewcode' ,
36
- 'pallets_sphinx_themes'
35
+ 'sphinx.ext.viewcode'
37
36
]
38
37
39
38
# Add any paths that contain templates here, relative to this directory.
50
49
# The theme to use for HTML and HTML Help pages. See the documentation for
51
50
# a list of builtin themes.
52
51
#
53
- html_theme = 'flask '
52
+ html_theme = 'furo '
54
53
55
54
# Add any paths that contain custom static files (such as style sheets) here,
56
55
# relative to this directory. They are copied after the builtin static files,
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ ghp-import = "^2.1.0"
43
43
Sphinx = " ^5.3.0"
44
44
coverage = " ^6.4.4"
45
45
pytest-cov = " ^3.0.0"
46
+ furo = " ^2022.12.7"
46
47
47
48
[build-system ]
48
49
requires = [" poetry-core>=1.0.0" ]
You can’t perform that action at this time.
0 commit comments