feat(#27)!: adopt the typed broker lifecycle and the publisher policy split #41
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: Docs | |
| on: | |
| push: | |
| branches: [main] | |
| paths: &docs-paths | |
| - docs/** | |
| - properdocs.yml | |
| - overrides/** | |
| - crates/ruststream-fred/examples/** | |
| - scripts/lint_doc_fences.py | |
| - .github/workflows/docs.yml | |
| pull_request: | |
| branches: [main] | |
| paths: *docs-paths | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: docs-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.12" | |
| - name: Install docs toolchain | |
| run: pip install -r docs/requirements.txt | |
| - name: Lint doc code fences | |
| run: python3 scripts/lint_doc_fences.py | |
| - name: Build site (strict) | |
| run: properdocs build --strict |