From a2c5c1b71f708bac20b04f5189bc6140568126ef Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Sat, 23 Sep 2023 23:37:56 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(ci.yml):=20update=20docker?= =?UTF-8?q?=20compose=20command=20to=20include=20result=5Fbackend=20and=20?= =?UTF-8?q?broker=20services=20for=20testing=20environment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c390c974f..6a84e224a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - name: Build and start services working-directory: ./deploy - run: docker compose up --exit-code-from tests tests queue celeryworker db + run: docker compose up --exit-code-from tests tests result_backend broker celeryworker db continue-on-error: true - name: Stop services