Skip to content

Merge pull request #7 from benavlabs/community-stuff #37

Merge pull request #7 from benavlabs/community-stuff

Merge pull request #7 from benavlabs/community-stuff #37

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