Skip to content

build(deps): Bump org.apache.maven.plugins:maven-enforcer-plugin from 3.3.0 to 3.4.0 #313

build(deps): Bump org.apache.maven.plugins:maven-enforcer-plugin from 3.3.0 to 3.4.0

build(deps): Bump org.apache.maven.plugins:maven-enforcer-plugin from 3.3.0 to 3.4.0 #313

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Download repository
uses: actions/checkout@v3.5.3
- name: Set up JDK
uses: actions/setup-java@v3.12.0
with:
java-version: 19
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v3.3.1
env:
cache-name: cache-mvn-temu-19
with:
path: ~/.m2/repository
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Test with Maven
run: mvn -B test --file pom.xml