From f06ef165f5e4182839489530502400278671ccce Mon Sep 17 00:00:00 2001 From: Joe Shannon Date: Thu, 7 Mar 2024 10:14:52 +0000 Subject: [PATCH] Add ActiveMQ service to test CI --- .github/workflows/_test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index f652d4145..8a5beee94 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -16,12 +16,26 @@ on: env: # https://github.com/pytest-dev/pytest/issues/2042 PY_IGNORE_IMPORTMISMATCH: "1" + BLUEAPI_TEST_STOMP_PORTS: "[61613,61614]" + + +services: + activemq: + image: rmohr/activemq:5.14.5-alpine + ports: + - 61613:61613 jobs: run: runs-on: ${{ inputs.runs-on }} steps: + - name: Start RabbitMQ + uses: namoshek/rabbitmq-github-action@v1 + with: + ports: "61614:61613" + plugins: rabbitmq_stomp + - name: Checkout uses: actions/checkout@v4 with: