Skip to content

Update pre-commit hook charliermarsh/ruff-pre-commit to v0.0.291 #823

Update pre-commit hook charliermarsh/ruff-pre-commit to v0.0.291

Update pre-commit hook charliermarsh/ruff-pre-commit to v0.0.291 #823

Workflow file for this run

name: mypy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Static typing wiyh mypy
run: |
mypy --install-types --non-interactive .