Skip to content

test: add trusted computation test #30

test: add trusted computation test

test: add trusted computation test #30

Workflow file for this run

name: Type annotation (project)
on:
push:
paths:
- 'datalad_remake/**.py'
- '!**/tests/**.py'
jobs:
check-types-project:
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: Set MYPYPATH
run: echo "MYPYPATH=$GITHUB_WORKSPACE/resources/type_stubs" >> $GITHUB_ENV
- 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 --check-untyped-defs datalad_remake
# run mypy on the full project.
# run on the oldest supported Python version.
hatch run types:mypy --python-version 3.11 --pretty --show-error-context --check-untyped-defs datalad_remake