Skip to content

ci: Add format check workflow #1

ci: Add format check workflow

ci: Add format check workflow #1

Workflow file for this run

name: Format check
on: [push, pull_request]
jobs:
check:
name: Format check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
continue-on-error: true
with:
args: "format --check"
changed-files: "true"