Skip to content

commit workflow.

commit workflow. #3

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Set up JDK 21
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn -B package --file pom.xml