Skip to content

Update some versions #47

Update some versions

Update some versions #47

name: Basic Maven Build
on:
push:
branches: [ master ]
jobs:
build:
name: Maven build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn -B -V clean verify