Skip to content

Include the line number of the class declaration in binding keys #59

Include the line number of the class declaration in binding keys

Include the line number of the class declaration in binding keys #59

Workflow file for this run

name: "Typing"
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
run:
name: "typing"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: pypa/hatch@install
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run mypy
run: hatch run types:check --python ${{ matrix.python-version }}