Skip to content

Bump mypy from 1.11.1 to 1.11.2 (#99) #303

Bump mypy from 1.11.1 to 1.11.2 (#99)

Bump mypy from 1.11.1 to 1.11.2 (#99) #303

Workflow file for this run

name: format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.8.3"
- name: Install Mise
uses: jdx/mise-action@v2
with:
experimental: true
- name: Install optional
run: poetry install
- name: Run Formatter
run: mise run format