Skip to content

refactor: moved logic for truncate cluster to the database layer #681

refactor: moved logic for truncate cluster to the database layer

refactor: moved logic for truncate cluster to the database layer #681

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 11 CI with Maven
on:
push:
branches: [ develop, 3.1.x, 3.0.x ]
pull_request:
branches: [ develop, 3.1.x, 3.0.x ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml