Skip to content

Commit

Permalink
Add Java 21 CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Nov 28, 2023
1 parent 2bb2cc0 commit dfaf5d0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/java21.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Java 21
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Azul JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn --no-transfer-progress -B test

0 comments on commit dfaf5d0

Please sign in to comment.