Skip to content

Update Maven & plugins #82

Update Maven & plugins

Update Maven & plugins #82

Workflow file for this run

name: Verify Codebase
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
verify:
name: Verify Codebase
runs-on: ubuntu-latest
env:
MVN: ./mvnw --show-version --batch-mode
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3
- name: Set up JDK
id: setup-jdk
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Verify
id: verify
run: $MVN verify