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 d0d307a commit 4415b18Copy full SHA for 4415b18
.github/workflows/build_docs.yaml
@@ -4,7 +4,7 @@ on:
4
push:
5
paths:
6
- "doc/*.md" # Trigger on changes to any markdown file
7
- - "**/*.py" # Optionally include changes in Python files
+ - "synapse_net/**/*.py" # Optionally include changes in Python files
8
branches:
9
- main # Run the workflow only on pushes to the main branch
10
workflow_dispatch:
@@ -38,7 +38,7 @@ jobs:
38
39
- name: Generate Documentation
40
shell: bash -l {0}
41
- run: pdoc synapse_net -d google -o doc/
+ run: pdoc synapse_net/ -d google -o doc/
42
43
- name: Verify Documentation Output
44
run: ls -la doc/
build_doc.py
@@ -11,6 +11,6 @@
11
12
if args.out:
13
cmd.extend(["--out", "tmp/"])
14
- cmd.append("synapse_net")
+ cmd.append("synapse_net/")
15
16
run(cmd)
0 commit comments