Skip to content

Bump mypy from 1.10.1 to 1.11.2 #42

Bump mypy from 1.10.1 to 1.11.2

Bump mypy from 1.10.1 to 1.11.2 #42

Workflow file for this run

name: Codestyle with Black
on:
push:
branches:
- master
pull_request_target:
branches:
- master
jobs:
black:
name: Run codestyle checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install requirements
run: pip install -r requirements.txt -r requirements.dev.txt
- name: Black check
run: black . --check