Skip to content

build(deps): bump cn.hutool:hutool-all from 5.7.22 to 5.8.21 #59

build(deps): bump cn.hutool:hutool-all from 5.7.22 to 5.8.21

build(deps): bump cn.hutool:hutool-all from 5.7.22 to 5.8.21 #59

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Checkstyle CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 8.0.192, 8 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java-version }} ${{ matrix.os }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: 'zulu'
cache: maven
- name: Checkstyle with Maven
run: mvn checkstyle:check