Skip to content

Commit 362b9f6

Browse files
committed
fix(pdoc): install dependencies before generating pydoc
1 parent 0a65d25 commit 362b9f6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@ jobs:
117117
run: pip install pdoc
118118

119119
- name: generate pydoc
120-
run: pdoc ibm_scc -o html
120+
run: |
121+
pip install -e .
122+
pdoc ibm_scc -o html
121123
122124
- name: deploy gopages to gh-pages
123125
uses: crazy-max/ghaction-github-pages@v1

0 commit comments

Comments
 (0)