Skip to content

Merge pull request #875 from rnc/BR1 #3268

Merge pull request #875 from rnc/BR1

Merge pull request #875 from rnc/BR1 #3268

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Build with Maven
working-directory: java-components
run: mvn -V -B package -Dvalidate-format
- name: Run unit tests
working-directory: java-components
run: mvn -V test