Skip to content

Commit 970b374

Browse files
committed
fix(ci): 🔧 update trigger paths in test workflow
* Adjusted the `push` and `pull_request` paths to include `tests/` directory. * This change ensures that workflows are triggered for changes in both `src/` and `tests/` directories.
1 parent d9a30d5 commit 970b374

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +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/*
7+
- src/
8+
- tests/
89

910
pull_request:
1011
paths:
11-
- src/*
12+
- src/
13+
- tests/
1214

1315
workflow_dispatch:
1416

0 commit comments

Comments
 (0)