We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7258278 + f5b8740 commit f3cc094Copy full SHA for f3cc094
1 file changed
.github/workflows/maven.yml
@@ -50,3 +50,23 @@ jobs:
50
$JAVA_HOME/bin/java --enable-preview --enable-native-access=ALL-UNNAMED \
51
-cp target/JoltPhysics-JavaFFM-5.5.0-jar-with-dependencies.jar \
52
volucris.bindings.jolt.HelloWorld
53
+
54
+ Windows:
55
+ runs-on: windows-2025
56
+ steps:
57
+ - uses: actions/checkout@v7
58
+ - name: Set up JDK 26
59
+ uses: actions/setup-java@v5
60
+ with:
61
+ java-version: '26'
62
+ distribution: 'oracle'
63
+ cache: maven
64
+ - name: Build with Maven
65
+ run: mvn -B package --file pom.xml
66
+ shell: bash
67
+ - name: Execute the HelloWorld app
68
+ run: |
69
+ "$JAVA_HOME/bin/java" --enable-preview --enable-native-access=ALL-UNNAMED \
70
+ -cp target/JoltPhysics-JavaFFM-5.5.0-jar-with-dependencies.jar \
71
+ volucris.bindings.jolt.HelloWorld
72
0 commit comments