Ruff format with defaults.

This commit is contained in:
erinhmclark
2025-03-10 18:44:54 +00:00
parent cbb0414e5f
commit 85abe1837a
155 changed files with 2539 additions and 1908 deletions

22
.github/workflows/ruff.yaml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Ruff Formatting & Linting
on: [push, pull_request]
jobs:
ruff:
name: Run Ruff Checks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Ruff (Lint & Format Check)
uses: astral-sh/ruff-action@v1
with:
args: "check . --output-format=concise"
- name: Run Ruff Format Check
uses: astral-sh/ruff-action@v1
with:
args: "format --check ."