Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.4 to 3.5.5 #6

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.4 to 3.5.5

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.4 to 3.5.5 #6

Workflow file for this run

name: Linting
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Run Checkstyle
# This command will automatically fail the build if style issues are found
# because of the <failsOnError>true</failsOnError> config in the pom.xml
run: mvn checkstyle:check