From 16fefb83880c29522e14e939d194bf1e1c25cb05 Mon Sep 17 00:00:00 2001 From: Mikel Martin Date: Wed, 27 Dec 2023 22:10:31 +0100 Subject: [PATCH] Add rabbitmq --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fc8283c..129e520 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,12 @@ jobs: ports: - 9200:9200 options: -e="discovery.type=single-node" -e "plugins.security.disabled=true" --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=10 + rabbitmq: + image: docker://rabbitmq:3.8.17-management + ports: + - 5672:5672 + - 15672:15672 + options: --health-cmd="rabbitmqctl node_health_check" --health-interval=10s --health-timeout=5s --health-retries=3 steps: ### Download the third party code in custom dir###