Skip to content

update versions (github-actions) #83

update versions (github-actions)

update versions (github-actions) #83

Workflow file for this run

name: Maven Build
on:
push:
branches:
- '**'
- '!develop'
- '!main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build with Maven
run: mvn -B verify --file pom.xml