Files
Argenta/.github/workflows/mypy.yml
T
2025-10-22 14:01:27 +03:00

32 lines
514 B
YAML

name: mypy
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv sync --group typecheckers
- name: Run type checker
run: uv run python -m mypy -p argenta