Skip to content

Commit

Permalink
Add workflow job for Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
dykstrom committed May 11, 2024
1 parent 3144d75 commit 0938834
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build with Maven
run: mvn -B verify --file pom.xml

build-ubuntu:
build-linux-17:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -33,6 +33,19 @@ jobs:
- name: Build with Maven
run: mvn -B verify --file pom.xml

build-linux-21:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B verify --file pom.xml

build-windows:
runs-on: windows-latest
steps:
Expand Down

0 comments on commit 0938834

Please sign in to comment.