Skip to content

Commit b1c6658

Browse files
committed
Add path filter to test workflow
Only run tests on pull requests that change files relevant to the build, setup, report, or test logic. Manual dispatch is unaffected.
1 parent df94693 commit b1c6658

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ on:
77
pull_request:
88
branches:
99
- main
10+
paths:
11+
- 'docker/**'
12+
- 'setup/**'
13+
- 'report/**'
14+
- 'test/**'
15+
- 'compose.yml'
16+
- 'compose.test.yml'
17+
- 'Makefile'
18+
- '.github/workflows/test.yml'
1019

1120
jobs:
1221
unit_test:

0 commit comments

Comments
 (0)