Skip to content

Update Maven wrapper to version 3.9.12, introduce multi-stage Dockerf… #1

Update Maven wrapper to version 3.9.12, introduce multi-stage Dockerf…

Update Maven wrapper to version 3.9.12, introduce multi-stage Dockerf… #1

Workflow file for this run

name: CI-pipeline
on:
push:
branches:
- 'main'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: Set up JDK
uses: actions/setup-java@v5.1.0
with:
java-version: '25'
distribution: 'temurin'
cache: 'maven'
# - name: Make mvnw executable
# run: chmod +x mvnw
- name: Compile and run tests
run: ./mvnw -B test
- name: Run spotless
run: ./mvnw -B spotless:check