Skip to content

Bump anthropics/claude-code-action from 1.0.128 to 1.0.133 #351

Bump anthropics/claude-code-action from 1.0.128 to 1.0.133

Bump anthropics/claude-code-action from 1.0.128 to 1.0.133 #351

Workflow file for this run

name: Ruff
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ruff:
name: Check for style errors and common problems
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
python-version: "3.12"
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Run Ruff linter and formatter check
run: uvx ruff check . && uvx ruff format --check .