Skip to content

format

format #7

Workflow file for this run

name: Python Linter
on: push
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Check linter rules
- uses: astral-sh/ruff-action@v3
# Check formatting is correct
- uses: astral-sh/ruff-action@v3
with:
args: "format --check"