Skip to content

Removes redundant feature flag #3

Removes redundant feature flag

Removes redundant feature flag #3

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: CI build
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Build
run: mvn -B clean package --file pom.xml
- name: Integration test
run: mvn -B failsafe:integration-test failsafe:verify --file pom.xml