Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Update properties to their latest versions #202

Update properties to their latest versions

Update properties to their latest versions #202

Workflow file for this run

# SPDX-FileCopyrightText: The maven-build-process Authors
# SPDX-License-Identifier: 0BSD
name: Verify Commits
on:
pull_request:
branches: [ main ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Clone Git Repository
uses: actions/checkout@v4
- uses: ./.github/actions/managed-java
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn --batch-mode verify