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

Merge pull request #24 from zlamalp/dependencies #11

Merge pull request #24 from zlamalp/dependencies

Merge pull request #24 from zlamalp/dependencies #11

Workflow file for this run

name: "test build"
on: [ push, pull_request ]
jobs:
test:
name: JDK ${{ matrix.java }} build
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21' ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-jdk${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-jdk${{ matrix.java }}-
- name: Build with Maven
run: mvn -B clean install