Skip to content

Commit d6835bf

Browse files
committed
Include src and test subfolders into GHA triggers
1 parent f5b86ce commit d6835bf

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/project_lint_black.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,13 @@ on:
55
branches:
66
- master
77
- develop
8-
paths:
9-
- 'app.py'
10-
- 'src/*'
11-
- 'tests/*'
128
push:
139
branches:
1410
- master
1511
paths:
1612
- 'app.py'
17-
- 'src/*'
18-
- 'tests/*'
13+
- 'src/**/*'
14+
- 'tests/**/*'
1915

2016
jobs:
2117
lint:

.github/workflows/project_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ on:
1111
paths:
1212
- 'app.py'
1313
- 'pytest.ini'
14-
- 'src/*'
15-
- 'tests/*'
14+
- 'src/**/*'
15+
- 'tests/**/*'
1616

1717
jobs:
1818
test:

0 commit comments

Comments
 (0)