Skip to content

Bump checkstyle from 9.3 to 10.3 #466

Bump checkstyle from 9.3 to 10.3

Bump checkstyle from 9.3 to 10.3 #466

Workflow file for this run

# Build validation
name: Build
on:
push:
branches-ignore:
- master
- experimental/**
pull_request:
branches-ignore:
- master
- experimental/**
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [8, 11, 17]
os: [ubuntu-latest]
distribution: [temurin]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build and verify
run: ./mvnw -s ./.maven-settings.xml -Pcontinuous-integration -B -U clean verify