From e424f52abf0f6e3a75fc6e54a7a12f168bfe996e Mon Sep 17 00:00:00 2001 From: Hmily <114978440+ihmily@users.noreply.github.com> Date: Fri, 28 Mar 2025 19:40:34 +0800 Subject: [PATCH] chore: update lint workflow for targeted checks --- .github/workflows/python-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-lint.yml b/.github/workflows/python-lint.yml index ae3f48c..0479a2b 100644 --- a/.github/workflows/python-lint.yml +++ b/.github/workflows/python-lint.yml @@ -36,5 +36,5 @@ jobs: pip install ruff - name: Run ruff lint check - run: ruff check . --config .ruff.toml --exclude="*.md,*.txt" - working-directory: . \ No newline at end of file + run: ruff check main.py app --config .ruff.toml + working-directory: .