Merge pull request #1345 from PyAutoLabs/feature/priors-messages-fixes #6
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 | |
| # Docs build check is defined once, centrally, in PyAutoHeart's reusable | |
| # workflow (Heart owns all health/readiness checking). This thin caller | |
| # builds the Sphinx docs on PRs and fails on warning-count regression | |
| # against docs/sphinx_warning_baseline.txt. | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "docs/**" | |
| - "autofit/**" | |
| - "pyproject.toml" | |
| - ".readthedocs.yaml" | |
| - ".github/workflows/docs.yml" | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| - "autofit/**" | |
| - "pyproject.toml" | |
| - ".readthedocs.yaml" | |
| - ".github/workflows/docs.yml" | |
| workflow_dispatch: | |
| jobs: | |
| docs: | |
| uses: PyAutoLabs/PyAutoHeart/.github/workflows/docs-build.yml@main | |
| with: | |
| package: autofit | |
| secrets: inherit |