Skip to content

Add mypy

Add mypy #102

Workflow file for this run

name: Run formatter
on:
- push
permissions:
contents: read
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/install_deps
- name: Run formatter
run: poetry run black --check --diff .
- name: Run isort
run: poetry run isort --check-only --diff .