Skip to content

Commit 77dfe44

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

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/java-gradle.yml

Lines changed: 3 additions & 2 deletions
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', '21', '22' ]
2526
runs-on: ${{ matrix.os }}
2627

2728
steps:
2829
- uses: actions/checkout@v4
29-
- name: Set up JDK 20
30+
- name: Set up JDK
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)