Skip to content

Commit

Permalink
Test vs Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
srowen committed Apr 23, 2024
1 parent 28c08ee commit 2326dd4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test_java_21.yml
@@ -0,0 +1,23 @@
name: Test Java 21

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

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 -nsu -B install

0 comments on commit 2326dd4

Please sign in to comment.