This repository was archived by the owner on Nov 10, 2025. It is now read-only.
More changes to fit with database mqdt #192
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
| # Since the mypy pre-commit cannot automatically install all the dependencies, we add an additional mypy workflow. | |
| name: Type Checking | |
| on: | |
| push: | |
| branches: ["*"] | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup uv project virtual environment | |
| uses: ./.github/actions/setup-uv | |
| - name: Run mypy | |
| run: uv run --no-project mypy . |