Skip to content

Add __init__.py files #4

Add __init__.py files

Add __init__.py files #4

Workflow file for this run

name: "Mypy"
on: ["push"]
jobs:
typecheck:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: "actions/checkout@v4"
- name: "Set up Python ${{matrix.python-version}}"
uses: "actions/setup-python@v3"
with:
python-version: "${{matrix.python-version}}"
- name: "Install the project"
run: |
pipx install poetry
poetry install
- name: "Type-check with mypy"
run: >
poetry run mypy . --strict
|| (echo yes | poetry run mypy --install-types && poetry run mypy . --strict)