Skip to content

Merge pull request #23 from datalad/itersubproc #30

Merge pull request #23 from datalad/itersubproc

Merge pull request #23 from datalad/itersubproc #30

Workflow file for this run

name: Type annotation (project)
on:
push:
paths:
- 'datasalad/**.py'
- '!**/tests/**.py'
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
# run on a "fresh" python, but see mypy flag to check for the oldest supported version
python-version: 3.12
architecture: x64
- name: Checkout
uses: actions/checkout@v4
- name: Install hatch (which pull mypy)
run: python -m pip install hatch
- name: Type check project
run: |
# get any type stubs that mypy thinks it needs
hatch run types:mypy --install-types --non-interactive --follow-imports skip datasalad
# run mypy on the full project.
# run on the oldest supported Python version
hatch run types:mypy --python-version 3.8 --pretty --show-error-context datasalad