fix(ci): restore green main (workflow callers, type errors, coverage, hardening) #20
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
| # Documentation Workflow | |
| # Builds and deploys MkDocs documentation to GitHub Pages. | |
| # | |
| # Features: | |
| # - MkDocs Material theme build | |
| # - GitHub Pages deployment on push to main | |
| # - PR preview builds | |
| name: Documentation | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| - '.github/workflows/docs.yml' | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write # For GitHub Pages deployment | |
| pages: write | |
| id-token: write | |
| # Uses org-level reusable workflow | |
| jobs: | |
| docs: | |
| name: Build & Deploy Docs | |
| uses: ByronWilliamsCPA/.github/.github/workflows/python-docs.yml@main | |
| with: | |
| no-build: false # hatchling build backend: editable install must build | |
| python-version: '3.12' | |
| deploy-to-pages: >- | |
| ${{ | |
| github.event_name == 'push' && | |
| github.ref == 'refs/heads/main' | |
| }} |