Skip to content

build: update formatting settings to avoid deprecated tab replacement… #925

build: update formatting settings to avoid deprecated tab replacement…

build: update formatting settings to avoid deprecated tab replacement… #925

Workflow file for this run

name: Lint & Test with Maven
on:
push:
branches: [main]
pull_request:
jobs:
mvn:
runs-on: ubuntu-latest
strategy:
matrix:
java-version:
- "17"
- "21"
steps:
- uses: actions/checkout@v6
- name: Install JDK
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java-version }}
distribution: "adopt"
- name: Lint
run: mvn --batch-mode spotless:check
- name: Build & Test
run: mvn --batch-mode test -Dspotless.apply.skip