BUG: fix extraction of ids if there is only a single hit when retriev… #550
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 checking | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
- cron: "0 0 * * 1,4" | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Manual test execution | |
default: test | |
required: false | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup micromamba | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-file: ci/envs/312-latest.yaml | |
create-args: >- | |
mypy | |
- name: Install momepy | |
run: pip install . | |
- name: Check momepy | |
run: | | |
mypy momepy/ --install-types --ignore-missing-imports --non-interactive | |