From 0ba5d46abead47a9a1bffed2559d6a6e9abcd3aa Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 18 Dec 2023 13:28:52 -0500 Subject: [PATCH] Add RabbitMQ service to the verify-staged WF --- .github/workflows/verify-staged-artifacts.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/verify-staged-artifacts.yml b/.github/workflows/verify-staged-artifacts.yml index b0eb7867..58ee4f83 100644 --- a/.github/workflows/verify-staged-artifacts.yml +++ b/.github/workflows/verify-staged-artifacts.yml @@ -11,6 +11,15 @@ on: jobs: verify-staged-with-samples: runs-on: ubuntu-latest + + services: + + rabbitmq: + image: rabbitmq:management + ports: + - 5672:5672 + - 15672:15672 + steps: - name: Checkout Samples Repo