Skip to content

Commit 8275b35

Browse files
Only run pylint workflow if python related files changed
1 parent 55fcad1 commit 8275b35

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,18 @@ name: Python application
66
on:
77
push:
88
branches: [master, develop]
9+
paths:
10+
- *.py
11+
- requirements.txt
12+
- requirements.in
13+
- .github/workflows/python-app.yml
914
pull_request:
1015
branches: [master, develop]
16+
paths:
17+
- *.py
18+
- requirements.txt
19+
- requirements.in
20+
- .github/workflows/python-app.yml
1121

1222
jobs:
1323
lint:

0 commit comments

Comments
 (0)