Skip to content

Adds a format step to ruff #15

Adds a format step to ruff

Adds a format step to ruff #15

Workflow file for this run

name: Lint with ruff
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: chartboost/ruff-action@v1
with:
args: "format --check"
changed-files: "true"