Skip to content

#17 Show the procedure visibility and type #31

#17 Show the procedure visibility and type

#17 Show the procedure visibility and type #31

Workflow file for this run

name: Lint with MyPy
on: [push, pull_request]
jobs:
mypy:
timeout-minutes: 10
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 dependencies
run: |
python -m pip install -c ci-constraints.txt . -r mypy-requirements.txt -r test-requirements.txt
- name: Run MyPy
run: |
mypy .