Skip to content

Commit 6c6a1f7

Browse files
author
Gonzalo Diaz
committed
[CONFIG] Java Tests script for github-actions. Multi-version/multi-OS tests added.
1 parent 9c2febb commit 6c6a1f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/java-gradle.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest, macos-latest, windows-latest]
25+
java: [ '20', '22' ]
2526
runs-on: ${{ matrix.os }}
2627

2728
steps:
2829
- uses: actions/checkout@v4
2930
- name: Set up JDK 20
3031
uses: actions/setup-java@v4
3132
with:
32-
java-version: '20'
33+
java-version: ${{ matrix.java }}
3334
distribution: temurin
3435

3536
- name: Validate Gradle wrapper

0 commit comments

Comments
 (0)