Skip to content

chore(deps): update dependency com.puppycrawl.tools:checkstyle to v10.16.0 #635

chore(deps): update dependency com.puppycrawl.tools:checkstyle to v10.16.0

chore(deps): update dependency com.puppycrawl.tools:checkstyle to v10.16.0 #635

Workflow file for this run

name: Java CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 11
- name: Build & Install checkstyle-config
run: cd checkstyle-config && mvn -B clean install && cd ..
- name: Build root
run: mvn -B clean verify
- name: Test lint
run: cd test && mvn -B -P lint clean verify