Skip to content

Bump com.puppycrawl.tools:checkstyle from 10.20.2 to 10.21.1 #1062

Bump com.puppycrawl.tools:checkstyle from 10.20.2 to 10.21.1

Bump com.puppycrawl.tools:checkstyle from 10.20.2 to 10.21.1 #1062

Workflow file for this run

name: All JDKs on all OSs
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
java_version: [11, 17, 21]
os: [windows-latest, macOS-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build with Maven
run: mvn -B install --file pom.xml
- name: Report code coverage to codecov
uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest' && matrix.java_version == '21'
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true