Skip to content

Bump the maven-build-plugins group across 1 directory with 4 updates #9

Bump the maven-build-plugins group across 1 directory with 4 updates

Bump the maven-build-plugins group across 1 directory with 4 updates #9

Workflow file for this run

name: Pull Request
on:
pull_request:
env:
JAVA_DIST: 'temurin'
JAVA_VERSION: 24
defaults:
run:
shell: bash
jobs:
test:
name: Compile and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: ${{ env.JAVA_DIST }}
java-version: ${{ env.JAVA_VERSION }}
cache: 'maven'
- name: Build and Test
id: buildAndTest
run: mvn -B clean verify