[JMS] Don't try to close null consumer #3614
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: pull_request | |
env: | |
MAVEN_VERSION: 3.9.9 | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: ${{ env.MAVEN_VERSION }} | |
- name: Compile | |
run: mvn --no-transfer-progress clean package | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: ${{ env.MAVEN_VERSION }} | |
- name: Run tests | |
run: mvn --no-transfer-progress clean test -Ptest | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: files | |
path: ./**/*.log |