Skip to content

Commit

Permalink
Build against JDK 11 and 16 as well as 8
Browse files Browse the repository at this point in the history
Depends on #8
  • Loading branch information
A248 committed May 21, 2021
1 parent f255ef8 commit fd51a8b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '16' ]

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: '8'
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Build with Gradle
run: ./gradlew build

0 comments on commit fd51a8b

Please sign in to comment.