Skip to content

Bump setuptools from 82.0.1 to 83.0.0 #33

Bump setuptools from 82.0.1 to 83.0.0

Bump setuptools from 82.0.1 to 83.0.0 #33

Workflow file for this run

name: Auto-format Python Code
on:
pull_request:
branches: [ master ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.14
- name: Run Ruff Formatter
run: uv run --with ruff ruff format .
- name: Commit and Push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "style: auto-format Python code"
file_pattern: "*.py"