Skip to content

Commit dedfb34

Browse files
committed
Add build steps for various toc settings.
Add additional test build targets for each toc setting values. This ensures that at least the documentation builds without errors.
1 parent e335ccb commit dedfb34

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,15 @@ jobs:
3232
- name: Build Test
3333
run: |
3434
cd test && make html SPHINXOPTS='-W'
35+
36+
- name: Build Test with toc show_parents=hide
37+
run: |
38+
cd test && make html SPHINXOPTS='-W -D toc_object_entries_show_parents=hide'
39+
40+
- name: Build Test with toc show_parents=domain
41+
run: |
42+
cd test && make html SPHINXOPTS='-W -D toc_object_entries_show_parents=domain'
43+
44+
- name: Build Test with toc show_parents=all
45+
run: |
46+
cd test && make html SPHINXOPTS='-W -D toc_object_entries_show_parents=all'

0 commit comments

Comments
 (0)