Skip to content

fix: format

fix: format #3

Workflow file for this run

name: Ruff
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
uses: chartboost/ruff-action@v1
with:
args: "check --fix"
- name: Format
uses: chartboost/ruff-action@v1
with:
args: "format"