Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0 #159

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0 #159

Workflow file for this run

on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '17'
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run Linting
run: mvn spotless:check
- name: Run Tests
run: mvn test