Comment out a test that behaves differently with different versions of mypy #909
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: Doc build | |
| on: | |
| pull_request | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies and local packages | |
| run: python -m pip install .[docs] | |
| - name: Build HTML documentation with Sphinx | |
| run: | | |
| cd docs | |
| python -m sphinx -b html -W source build |