Skip to content

Fix build

Fix build #3760

Workflow file for this run

name: Quick Build
on:
workflow_dispatch:
push:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
jobs:
build:
name: Quick build
runs-on: ubuntu-latest
steps:
# SETUP BUILD ENVIRONMENT
- id: prepare-maven-build
name: Prepare Maven build
uses: sualeh/[email protected]
with:
java-version: 8
- id: install-graphviz
name: Install Graphviz
uses: sualeh/[email protected]
# BUILD AND TEST
- id: build-test
name: Build all modules and run tests
shell: bash
run: |
# Build
mvn \
--no-transfer-progress \
--batch-mode \
clean package