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 d00cbd8 commit 79643dbCopy full SHA for 79643db
.github/workflows/pdoc.yml
@@ -1,5 +1,9 @@
1
name: pdoc
2
3
+defaults:
4
+ run:
5
+ shell: bash
6
+
7
on:
8
push:
9
branches: [ main ]
@@ -19,17 +23,16 @@ jobs:
19
23
persist-credentials: false
20
24
- uses: actions/setup-python@v2
21
25
with:
22
- python-version: 3.9
26
+ python-version: 3.12
27
- name: Build
28
run: |
- pip install pdoc3
29
+ pip install pdoc
30
pip install -e .
- # FIXME #23: add -We
- python -m pdoc --html PyPartMC
31
+ PDOC_ALLOW_EXEC=1 python -We -m pdoc -o html PyPartMC
32
- name: Deploy
33
if: ${{ github.ref == 'refs/heads/main' && matrix.platform == 'ubuntu-latest' }}
34
uses: JamesIves/[email protected]
35
36
BRANCH: pdoc
- FOLDER: html/PyPartMC
37
+ FOLDER: html
38
CLEAN: true
0 commit comments