debug info flux #211
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: Mypy | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
mypy: | |
strategy: | |
matrix: | |
python-version: [3.9, "3.10", "3.11", "3.12"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: | | |
pipx install poetry | |
# and the task runner | |
pipx inject poetry poethepoet --include-apps | |
- name: Install dependencies | |
run: poetry install --with analysis | |
- name: Check | |
run: poe mypy |