Skip to content

Bump actions/checkout from 6 to 7 in the github-actions group #363

Bump actions/checkout from 6 to 7 in the github-actions group

Bump actions/checkout from 6 to 7 in the github-actions group #363

Workflow file for this run

name: autofix.ci
on:
workflow_call:
pull_request:
push:
branches: [ "main" ]
permissions:
contents: read
jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
# Use uv to ensure we have the same ruff version in CI and locally.
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
with:
version: "0.4.20"
# Fix lint errors
- run: uv run ruff check --fix-only .
# Format code
- run: uv run ruff format .
- uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a