From 320a87f9eef5c3cc47c25aff3ab4469b7b343d29 Mon Sep 17 00:00:00 2001 From: Muhammad Illiyin <55222179+milliyin@users.noreply.github.com> Date: Mon, 20 Jul 2026 21:30:48 +0500 Subject: [PATCH] Modify lint step to include ruff auto-fix Updated linting step to automatically fix issues with ruff. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a57ce2..807904d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Lint run: | - ruff check . + ruff check --fix . ruff format --check . - name: Type check