Skip to content

chore: format

chore: format #1516

Workflow file for this run

name: Formatting
on:
push:
workflow_dispatch:
jobs:
format:
name: Run Ruff format checker
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Ruff
run: pip install ruff==0.6.8
- name: Run ruff
run: ruff format --check .