docs: sphinxcontrib-zopeext is incompatible with sphinx 9 sphinx-cont… #430
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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| cache: pip | |
| - run: pip install --upgrade pre-commit | |
| - run: pre-commit run --all-files | |
| - run: pip install --upgrade check-manifest setuptools | |
| - run: check-manifest |