Skip to content

Commit

Permalink
fix: 테스트용 MySQL DB 주석처리
Browse files Browse the repository at this point in the history
  • Loading branch information
ahyeonkong committed Dec 3, 2024
1 parent fad7d5e commit 1e9e917
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:

# MySQL 서비스 컨테이너를 설정
# GitHub Actions runner에서 실행되는 독립적인 MySQL 환경
services:
mysql:
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: test # 테스트용 DB 이름을 자유롭게 지정
ports:
- 3366:3306 # 포트도 자유롭게 변경 가능
# MySQL 컨테이너가 완전히 준비되었는지 확인하기 위한 헬스체크 옵션
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
# services:
# mysql:
# image: mysql:8.0
# env:
# MYSQL_ROOT_PASSWORD: root
# MYSQL_DATABASE: test # 테스트용 DB 이름을 자유롭게 지정
# ports:
# - 3366:3306 # 포트도 자유롭게 변경 가능
# # MySQL 컨테이너가 완전히 준비되었는지 확인하기 위한 헬스체크 옵션
# options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
# 소스 코드를 체크아웃
Expand Down

0 comments on commit 1e9e917

Please sign in to comment.