Skip to content

Commit ded1a22

Browse files
otter606richarda23
authored andcommitted
run build on java 11 and 17
1 parent a93c23b commit ded1a22

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/prs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ on:
77
jobs:
88
test:
99
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
java: [ '8', '11' ]
1013
steps:
1114
- uses: actions/checkout@v3
1215
- uses: actions/setup-java@v3
1316
with:
1417
distribution: 'corretto'
15-
java-version: '8'
18+
java-version: ${{matrix.java}}
1619
cache: 'gradle'
17-
- run: ./gradlew test --no-daemon
20+
- run: ./gradlew test --no-daemon

0 commit comments

Comments
 (0)