Skip to content

Commit 75f1db8

Browse files
committed
fix(ci): improve JAVA_HOME verification in test workflow
1 parent 056332a commit 75f1db8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
cache: maven
2626
cache-dependency-path: pom.xml
2727

28-
# Verify JAVA_HOME is set
2928
- name: Verify JAVA_HOME
30-
run: echo "JAVA_HOME is set to: $JAVA_HOME"
31-
29+
run: |
30+
echo "JAVA_HOME is set to: $JAVA_HOME"
31+
3232
# Run Maven tests
3333
- name: Run Maven Tests
3434
# This command will execute your project's tests.

0 commit comments

Comments
 (0)