Skip to content

Bump the github-actions group with 2 updates #355

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #355

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@v6
# Use uv to ensure we have the same ruff version in CI and locally.
- uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b
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@7a166d7532b277f34e16238930461bf77f9d7ed8