docs(jmap): add JMAP usage documentation and autodoc stubs #253
Workflow file for this run
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: Link check | |
| on: [push, pull_request] | |
| jobs: | |
| linkcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check links with Lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| fail: true | |
| args: >- | |
| --timeout 10 | |
| --max-retries 2 | |
| '**/*.md' | |
| '**/*.rst' |