Skip to content

Commit 8aa1649

Browse files
committed
fix(ci): 🔧 fix trigger paths in test workflow
* Changed paths in the GitHub Actions workflow to use glob patterns. * This ensures that changes in any subdirectory of `src/` and `tests/` trigger the workflow.
1 parent bd04ac3 commit 8aa1649

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ on:
44
# https://blog.esciencecenter.nl/reduce-reuse-recycle-save-the-planet-one-github-action-at-a-time-4ab602255c3f
55
push:
66
paths:
7-
- src/
8-
- tests/
7+
- 'src/**'
8+
- 'tests/**'
99

1010
pull_request:
1111
paths:
12-
- src/
13-
- tests/
12+
- 'src/**'
13+
- 'tests/**'
1414

1515
workflow_dispatch:
1616

0 commit comments

Comments
 (0)