chore(deps): update dependency mypy to >=1.19.0 (#92) #31
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
| # Static type checking | |
| name: Static type checking | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| branches: ["master"] | |
| jobs: | |
| test: | |
| name: Static type checking | |
| runs-on: ubuntu-latest | |
| container: python:3.14-alpine3.21 | |
| steps: | |
| - name: Install Alpine Dependencies | |
| run: apk add git | |
| - name: Display Python version | |
| run: python -c "import sys; print(sys.version)" | |
| - name: Display Git version | |
| run: git --version | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Install Dependencies | |
| run: pip install -e ".[dev]" | |
| - name: Run mypy | |
| run: mypy --strict editorconfig |