Skip to content

Update package lock #70

Update package lock

Update package lock #70

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@v3"
- 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)"