Skip to content

Add default value for JMS pool name to reduce needed configuration for proper registration in Narayana #473

Add default value for JMS pool name to reduce needed configuration for proper registration in Narayana

Add default value for JMS pool name to reduce needed configuration for proper registration in Narayana #473

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: '**'
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
java: [ 21, 17 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
cache: 'maven'
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Install
run: ./mvnw install -DskipTests
- name: Test
run: ./mvnw -Ptestcontainers verify