feat: hierachical, multi-source settings manager #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |