Skip to content

Commit

Permalink
Update unit-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
anaiberta authored Nov 26, 2024
1 parent 78b81ce commit 83908d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 83908d3

Please sign in to comment.