Skip to content

Bump pre-commit from 3.8.0 to 4.0.1 #3544

Bump pre-commit from 3.8.0 to 4.0.1

Bump pre-commit from 3.8.0 to 4.0.1 #3544

Workflow file for this run

name: mypy
on:
push:
pull_request:
merge_group:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
- name: Install dependencies
run: |
pip install --upgrade pip
python -m pip install --upgrade poetry
poetry install
- name: Analysing the code with mypy
run: |
poetry run mypy mirar --ignore-missing-imports