Skip to content

ci: add action for Claude Code PR review #74

ci: add action for Claude Code PR review

ci: add action for Claude Code PR review #74

Workflow file for this run

---
name: Code Formatting
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
jobs:
ruff-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Install ruff based off pyproject.toml
uses: astral-sh/ruff-action@0ce1b0bf8b818ef400413f810f8a11cdbda0034b # v4.0.0
with:
args: "format --check --diff" # only check formatting here
version-file: "pyproject.toml"