Species sqdt #133
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@v6 | |
| - name: Setup uv project virtual environment | |
| uses: ./.github/actions/setup-uv | |
| - name: Run mypy | |
| run: uv run --no-project mypy . |