Skip to content

Commit

Permalink
Also test with Java 17 and version updates (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmdietl authored Sep 5, 2024
1 parent 5a6aed3 commit f6ed135
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,23 @@ jobs:
build:
strategy:
matrix:
jdk: [ 8, 11 ]
jdk: [ 8, 11, 17 ]
runs-on: ubuntu-latest
steps:
- name: Pull Request Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
if: github.head_ref != ''
- name: Push Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
if: github.head_ref == ''
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: ${{matrix.jdk}}
distribution: 'temurin'
- name: Set up Python 3
uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit f6ed135

Please sign in to comment.