Skip to content

Correcting the version #8

Correcting the version

Correcting the version #8

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 21 ]
name: Java ${{matrix.java}}
steps:
- uses: actions/checkout@v4.1.7
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{matrix.java}}
- name: Build with Maven
run: mvn -B package --file pom.xml