A pre-commit hook that will fail if documentation (eg for readthedocs.io) can't be built using sphinx
Using pre-commit
Builds documentation using sphinx, returns PASSED to pre-config if the documentation compiles (even with warnings)
Use in your .pre-commit-config.yaml file like:
- repo: https://github.com/thclark/pre-commit-sphinxrev: 0.0.1hooks:
- id: build-docsargs: ['--cache-dir', 'docs/doctrees', '--html-dir', 'docs/html', '--source-dir', 'docs/source']language_version: python3