We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f876a6a commit d5a2f39Copy full SHA for d5a2f39
.github/workflows/test.yml
@@ -16,7 +16,7 @@ jobs:
16
# Checkout the repository
17
- uses: actions/checkout@v4
18
19
- # Set up JDK 21
+ # Set up JDK 24
20
- name: Set up JDK 24
21
uses: actions/setup-java@v4
22
with:
@@ -25,7 +25,11 @@ jobs:
25
cache: maven
26
cache-dependency-path: pom.xml
27
28
- # Build with Maven
29
- - name: Compile with Maven
30
- run: mvn test -f pom.xml
+ # Verify JAVA_HOME is set
+ - name: Verify JAVA_HOME
+ run: echo "JAVA_HOME is set to: $JAVA_HOME"
31
32
+ # Run Maven tests
33
+ - name: Run Maven Tests
34
+ # This command will execute your project's tests.
35
+ run: mvn test -f pom.xml
0 commit comments