Merge pull request #7 from benavlabs/community-stuff #37
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: Tests Type Checking | |
| on: [push, pull_request] | |
| jobs: | |
| type-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| - name: Install uv | |
| run: pip install uv | |
| - name: Install dependencies with lock file | |
| run: uv sync --all-extras | |
| - name: Run mypy on tests | |
| run: uv run mypy tests --config-file pyproject.toml |