Skip to content

fix: rename job to ruff #4

fix: rename job to ruff

fix: rename job to ruff #4

Workflow file for this run

name: Ruff
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: write
jobs:
ruff:
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"