From 83908d3e6b6234dc2143af74f0c57f209d30e805 Mon Sep 17 00:00:00 2001 From: Ana Berta <31777352+anaiberta@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:41:58 -0300 Subject: [PATCH] Update unit-test.yml --- .github/workflows/unit-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 121d242..602cbfc 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -27,8 +27,8 @@ jobs: # Ensure the test directory is set up correctly echo "Running all Groovy tests..." - # Run all Groovy test files in the tests directory - for testFile in ./test/*.groovy; do + # Run all Groovy test files in the 'test' directory + find ./test -name '*.groovy' | while read testFile; do echo "Running $testFile..." groovy "$testFile" done