Skip to content

initial commit

initial commit #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'feature/**'
- 'bugfix/**'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Build with Maven Wrapper
run: ./mvnw clean verify --batch-mode