Skip to content

Commit 63ac1c5

Browse files
Kristjan Kosicspkjp
authored andcommitted
chore: add actions for different JDK versions (#90)
1 parent 409ef6f commit 63ac1c5

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ on:
1111
jobs:
1212
unit:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
# test against latest update of each major Java version, as well as specific updates of LTS versions:
17+
java: [ 8, 9, 10, 11, 12, 13 ]
1418

1519
steps:
1620
- uses: actions/checkout@v1
17-
- name: Set up JDK 1.8
21+
- name: Use Java Version ${{ matrix.java }}
1822
uses: actions/setup-java@v1
1923
with:
20-
java-version: 1.8
24+
java-version: ${{ matrix.java }}
2125
- name: Install
2226
run: gradle dependencies
2327
- name: Test

0 commit comments

Comments
 (0)