Fix getindex of local truth_values
with global condition_idx
#1152
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: Python Lint | |
on: | |
push: | |
branches: [main] | |
paths-ignore: [".teamcity/**"] | |
tags: ["*"] | |
pull_request: | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
mypy: | |
name: Mypy | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: "latest" | |
cache: true | |
- name: Prepare pixi | |
run: pixi run install-without-pre-commit | |
- name: Run mypy on python/ribasim | |
run: | | |
pixi run mypy-ribasim-python | |
- name: Run mypy on python/ribasim_testmodels | |
run: | | |
pixi run mypy-ribasim-testmodels | |
- name: Run mypy on python/ribasim_api | |
run: | | |
pixi run mypy-ribasim-api |