Skip to content

Bump mypy from 1.10.0 to 1.11.1 #36

Bump mypy from 1.10.0 to 1.11.1

Bump mypy from 1.10.0 to 1.11.1 #36

Workflow file for this run

name: Formatting
on:
pull_request:
branches:
- main
jobs:
build:
name: Code formatting
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/job-setup
with:
install-dependencies: format
- name: Run import formatter
run: isort .
- name: Run code formatter
run: black .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply formatting.