Use own kafka callback (drop dependency on bluesky-kafka)
#2352
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: sphinx | |
| on: [push, pull_request, workflow_call] | |
| jobs: | |
| spellcheck: | |
| runs-on: "windows-latest" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: install requirements | |
| run: pip install -e .[dev] | |
| - name: run spellcheck | |
| run: sphinx-build -E -a -W --keep-going -b spelling doc _build | |
| call_sphinx_builder: | |
| uses: ISISComputingGroup/reusable-workflows/.github/workflows/sphinx.yml@main | |
| secrets: inherit |