Skip to content

Fix auto-recovery behavior for AMQ119002 producer failures #710

Fix auto-recovery behavior for AMQ119002 producer failures

Fix auto-recovery behavior for AMQ119002 producer failures #710

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
ARTEMIS_USERNAME: "artemis"
ARTEMIS_PASSWORD: "artemis"
ARTEMIS_HOST: "localhost"
ARTEMIS_PORT: 5672
ARTEMIS_WS_PORT: 80
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 10.0.x
- name: Run ActiveMQ Artemis
run: docker compose up -V -d
working-directory: ./test/artemis
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
run: dotnet test --configuration Release