Skip to content

build(deps): bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.1.0 #885

build(deps): bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.1.0

build(deps): bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.1.0 #885

Workflow file for this run

name: analyze and review code
on: [ push, pull_request ]
jobs:
license-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Java 21
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
cache: maven
- name: Check license headers
run: ./mvnw -B -V com.mycila:license-maven-plugin:5.0.0:check
style-check:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
cache: maven
- name: Check code style
run: ./mvnw spotless:check