Skip to content

Commit

Permalink
[CI] Test on various JDK versions (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst committed Jun 16, 2022
1 parent bd2d35a commit a04ab88
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gradle.yml
Expand Up @@ -12,15 +12,18 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up JDK 8
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 8
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'gradle'

Expand Down

0 comments on commit a04ab88

Please sign in to comment.