Skip to content

Bump black from 25.12.0 to 26.1.0 #255

Bump black from 25.12.0 to 26.1.0

Bump black from 25.12.0 to 26.1.0 #255

Workflow file for this run

name: Mypy
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
permissions: {}
jobs:
mypy:
name: Mypy Python ${{ matrix.python-version }}
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m venv ./venv
source ./venv/bin/activate
echo "PATH=${PATH}" >> "${GITHUB_ENV}"
python -m pip install --upgrade pip
python -m pip install --group all .
- name: Run mypy tests
run: |
# shellcheck disable=SC2046
mypy $(git ls-files '*.py' ':!:docs/source/*')