Update style_guide.md to clarify pre-commit setup, add Docker commands to Makefile and merge ruff actions.

This commit is contained in:
erinhmclark
2025-03-13 20:26:29 +00:00
parent 0bef78b0b4
commit c7c24fbaf2
3 changed files with 56 additions and 22 deletions

View File

@@ -14,9 +14,4 @@ jobs:
- 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 ."
args: "check . --output-format=concise && ruff format --check ."