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 7907292 commit b6bbf78
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
sdk install groovy
source "$HOME/.sdkman/bin/sdkman-init.sh" && groovy -version # Verify installation
- name: Compile Groovy Classes
run: |
# Compile the Groovy classes
groovyc -d ./bin ./src/com/genexus/*.groovy
- name: Run All Tests
run: |
# Ensure the test directory is set up correctly
Expand All @@ -31,6 +36,6 @@ jobs:
# Run all Groovy test files in the 'test' directory
find ./test -name '*.groovy' | while read testFile; do
echo "Running $testFile..."
groovy "$testFile"
groovy -cp ./bin "$testFile"
done
echo "All tests executed!"

0 comments on commit b6bbf78

Please sign in to comment.