Skip to content

#2528 Batch processing of messages: When one of the messages encounters a parsing exception, only the exception messages are rejected, not all of them #351

#2528 Batch processing of messages: When one of the messages encounters a parsing exception, only the exception messages are rejected, not all of them

#2528 Batch processing of messages: When one of the messages encounters a parsing exception, only the exception messages are rejected, not all of them #351

name: Pull Request build
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
services:
rabbitmq:
image: rabbitmq:management
ports:
- 5672:5672
- 15762:15762
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Run Gradle
uses: burrunan/gradle-cache-action@v1
with:
arguments: check
- name: Capture Test Results
if: failure()
uses: actions/upload-artifact@v2
with:
name: test-results
path: '*/build/reports/tests/**/*.*'
retention-days: 3