Bump org.apache.maven.plugins:maven-surefire-plugin from 3.3.1 to 3.4.0 #601
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linter | |
on: pull_request | |
jobs: | |
java: | |
name: Lint .java files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'maven' | |
- name: Run Maven formatter | |
run: mvn formatter:format | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: PhoenicisBot | |
author_email: git@phoenicis.org | |
message: 'Lint .java files' | |
add: '*.java' |