Skip to content

Bump maven-checkstyle-plugin from 3.2.1 to 3.2.2 #109

Bump maven-checkstyle-plugin from 3.2.1 to 3.2.2

Bump maven-checkstyle-plugin from 3.2.1 to 3.2.2 #109

Workflow file for this run

name: test
on:
release:
types: [created]
pull_request:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'test'
jobs:
build:
strategy:
matrix:
java: [ '16' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: compile and test
run: mvn compile test --file pom.xml