Skip to content

Commit 8eb46a0

Browse files
Use recursive globs in lint workflow
Update .github/workflows/lint-backend.yml to use recursive glob patterns for Python files so changes in nested subdirectories trigger the lint workflow. Replaced 'src/**.py' with 'src/**/*.py' and 'tests/**.py' with 'tests/**/*.py'.
1 parent b726699 commit 8eb46a0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/lint-backend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Lint Backend
33
on:
44
pull_request:
55
paths:
6-
- 'src/**.py'
7-
- 'tests/**.py'
6+
- 'src/**/*.py'
7+
- 'tests/**/*.py'
88
- 'pyproject.toml'
99
- 'uv.lock'
1010
- '.github/workflows/lint-backend.yml'

0 commit comments

Comments
 (0)