Skip to content

Add ruff check GitHub Actions workflow for code linting #62

Add ruff check GitHub Actions workflow for code linting

Add ruff check GitHub Actions workflow for code linting #62

Workflow file for this run

name: Mypy check
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install uv
run: |
pip install uv
- name: Install dependencies
run: |
uv sync --dev
- name: Run Type Checks
run: |
uv run mypy .