Skip to content

Merge pull request #78 from skfit-uni-luebeck/renovate/jackson-monorepo #207

Merge pull request #78 from skfit-uni-luebeck/renovate/jackson-monorepo

Merge pull request #78 from skfit-uni-luebeck/renovate/jackson-monorepo #207

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: Java CI with Maven
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '21'
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Checkout code
uses: actions/checkout@v4
- name: Build with Maven
run: mvn install