Skip to content

Commit 91411f3

Browse files
committed
chore(governance): limit build workflow to code changes only
1 parent cac1965 commit 91411f3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/python_build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@ name: Code quality
22

33
on:
44
pull_request:
5+
paths:
6+
- "aws_lambda_powertools/**"
7+
- "tests/**"
8+
- "pyproject.toml"
9+
- "poetry.lock"
10+
- "mypy.ini"
511
branches:
612
- develop
713
- master
814
push:
15+
paths:
16+
- "aws_lambda_powertools/**"
17+
- "tests/**"
18+
- "pyproject.toml"
19+
- "poetry.lock"
20+
- "mypy.ini"
921
branches:
1022
- develop
1123
- master

0 commit comments

Comments
 (0)