Skip to content

Commit e63bd43

Browse files
committed
Experimental: run CI/CD checks only on changed Python/YAML files
It doesn't make sense to run data transformation tests on changes in Jinja2 templates or documentation. Let's hope the 'paths' parameter is what's needed to get that done.
1 parent ce9e1c8 commit e63bd43

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ name: Run CICD Tests
33
on:
44
push:
55
branches-ignore: [ devc ]
6+
paths:
7+
- '**.py'
8+
- '**.yaml'
69
pull_request:
10+
paths:
11+
- '**.py'
12+
- '**.yaml'
713

814
jobs:
915
tests:

0 commit comments

Comments
 (0)