Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Commit 83908d3

Browse files
authored
Update unit-test.yml
1 parent 78b81ce commit 83908d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
# Ensure the test directory is set up correctly
2828
echo "Running all Groovy tests..."
2929
30-
# Run all Groovy test files in the tests directory
31-
for testFile in ./test/*.groovy; do
30+
# Run all Groovy test files in the 'test' directory
31+
find ./test -name '*.groovy' | while read testFile; do
3232
echo "Running $testFile..."
3333
groovy "$testFile"
3434
done

0 commit comments

Comments
 (0)