From 71027fa55ba2c718ee75e6dc6828eaa13dacd576 Mon Sep 17 00:00:00 2001 From: namgigun Date: Tue, 30 Sep 2025 14:22:53 +0900 Subject: [PATCH] =?UTF-8?q?Infra:=20CI=20=ED=99=98=EA=B2=BD=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 프로젝트 빌드 & 테스트 전, Redis 실행 --- .github/workflows/backend-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 43b52d08..df051bf5 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -12,6 +12,12 @@ jobs: build-and-test: runs-on: ubuntu-latest + services: + redis: + image: redis:7 + ports: + - 6379:6379 + steps: # 저장소 체크아웃 - name: Checkout repository