Skip to content

chore(deps): bump pydantic from 2.12.0 to 2.12.3 #1069

chore(deps): bump pydantic from 2.12.0 to 2.12.3

chore(deps): bump pydantic from 2.12.0 to 2.12.3 #1069

Workflow file for this run

name: "Black"
on: [pull_request]
jobs:
black:
runs-on: ubuntu-latest
strategy:
matrix:
formatter: ["black", "isort"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[formatting]
- name: Run ${{ matrix.formatter }} Code Formatter Check
run: |
${{ matrix.formatter }} . --check