Skip to content

Commit eca58d1

Browse files
will check for all py files
1 parent 24d8aa7 commit eca58d1

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

.github/workflows/ruff-check.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ jobs:
2727
with:
2828
python-version: '3.12'
2929

30-
3130
# 3. Determine changed Python files
32-
3331
- name: Get changed Python files
3432
id: changed-files
3533
run: |
@@ -43,8 +41,7 @@ jobs:
4341
4442
# List all changed .py files in target directories
4543
FILES=$(git diff --name-only --diff-filter=ACMRT $BASE_SHA $HEAD_SHA \
46-
47-
| grep -E '^(api-server|state-manager)/.*\.py$' || true)
44+
| grep -E '\.py$' || true)
4845
4946
echo "files=$FILES" >> "$GITHUB_OUTPUT"
5047

0 commit comments

Comments
 (0)