Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Add JDK17 support for github actions #90

Add JDK17 support for github actions

Add JDK17 support for github actions #90

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: verify
run: mvn -B -U verify