Skip to content

Bump com.puppycrawl.tools:checkstyle from 13.2.0 to 13.3.0 #2533

Bump com.puppycrawl.tools:checkstyle from 13.2.0 to 13.3.0

Bump com.puppycrawl.tools:checkstyle from 13.2.0 to 13.3.0 #2533

name: "Build and Test"
on:
pull_request:
branches: ['main', '3.6.x-fixes', '3.5.x-fixes', '3.4.x-fixes']
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
java: [17, 21]
permissions:
contents: read
pull-requests: read
timeout-minutes: 130
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v3.6.0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: '${{ matrix.java }}'
distribution: 'temurin'
cache: maven
- name: Build with Apache Maven (Windows)
if: ${{ matrix.os == 'windows-latest' }}
run: mvn -U clean install -fae -B -Peverything
- name: Build with Apache Maven
if: ${{ matrix.os != 'windows-latest' }}
run: mvn -U clean install -Djava.awt.headless=true -fae -B -Peverything
env:
MAVEN_OPTS: "-Xmx1024M"