|
@@ -1,15 +1,15 @@
|
|
-
|
|
|
|
|
|
+---
|
|
name: API Docs
|
|
name: API Docs
|
|
|
|
|
|
-on:
|
|
|
|
|
|
+"on":
|
|
push:
|
|
push:
|
|
- branches: [ main, master ]
|
|
|
|
|
|
+ branches: [main, master]
|
|
pull_request:
|
|
pull_request:
|
|
schedule:
|
|
schedule:
|
|
- - cron: "0 6 * * *" # Daily 6AM UTC build
|
|
|
|
|
|
+ - cron: "0 6 * * *" # Daily 6AM UTC build
|
|
|
|
|
|
jobs:
|
|
jobs:
|
|
- test:
|
|
|
|
|
|
+ apidocs:
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
steps:
|
|
steps:
|
|
@@ -17,10 +17,9 @@ jobs:
|
|
- name: Set up Python
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
with:
|
|
- python-version: "3.10"
|
|
|
|
|
|
+ python-version: "3.13"
|
|
- name: Install pydoctor
|
|
- name: Install pydoctor
|
|
run: |
|
|
run: |
|
|
- sudo apt-get update && sudo apt -y install -y pydoctor python3-pip
|
|
|
|
pip3 install pydoctor
|
|
pip3 install pydoctor
|
|
- name: Generate docs
|
|
- name: Generate docs
|
|
run: make apidocs
|
|
run: make apidocs
|