Skip to content

Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.… #12

Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.…

Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.… #12

Workflow file for this run

name: Lint & Test with Gradle
on:
push:
branches: [ main ]
pull_request:
jobs:
gradle:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ['11', '17']
steps:
- uses: actions/checkout@v4
- name: Install JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
- name: Lint
run: gradle spotlessCheck
- name: Build & Test
run: gradle test -x spotlessApply