Skip to content

Bump multipart from 1.3.0 to 1.3.1 #1399

Bump multipart from 1.3.0 to 1.3.1

Bump multipart from 1.3.0 to 1.3.1 #1399

name: Check code formatting
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 13 * * 1" # run every Monday at 13:00 UTC
jobs:
format:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.11
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Sync dependencies
run: uv sync
- name: Ruff check
run: uv run ruff check .
- name: Ruff format
run: uv run ruff format .