[bug fix] contrib: fix paramiko host key verification (#2123) #4305
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: API Docs | |
| "on": | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| schedule: | |
| - cron: "0 6 * * *" # Daily 6AM UTC build | |
| permissions: | |
| contents: read | |
| jobs: | |
| apidocs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install pydoctor | |
| run: | | |
| pip3 install pydoctor | |
| - name: Generate docs | |
| run: make apidocs PYDOCTOR_ARGS=--warnings-as-errors |