ci: build Docker image on PRs to catch base-image breakage #176
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
| on: | |
| push: | |
| pull_request: | |
| name: Type checker | |
| jobs: | |
| test: | |
| name: pyright | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - run: pip install -e .[gui] | |
| - uses: jakebailey/pyright-action@v3 | |
| with: | |
| version: 1.1.318 |