Skip to content

[#1] CHORE: CI 테스트용 스키마 생성 및 Flyway 비활성화#79

Merged
Hwan0518 merged 1 commit intodevelopfrom
feature/ci/test-schema-setup
Jan 30, 2026
Merged

[#1] CHORE: CI 테스트용 스키마 생성 및 Flyway 비활성화#79
Hwan0518 merged 1 commit intodevelopfrom
feature/ci/test-schema-setup

Conversation

@Hwan0518
Copy link
Contributor

Issue ✨

버그 해결 💊

  • CI 테스트용 스키마 생성 및 Flyway 비활성화

Copilot AI review requested due to automatic review settings January 30, 2026 10:34
@Hwan0518 Hwan0518 merged commit ef4764a into develop Jan 30, 2026
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

CI 환경에서 테스트 실행 시 DB 스키마/테이블을 Hibernate로 생성하도록 하고, Flyway를 비활성화하여 CI 테스트 안정성을 높이려는 PR입니다.

Changes:

  • GitHub Actions 테스트 단계에서 ddl-auto=create 설정 추가
  • GitHub Actions 테스트 단계에서 Flyway 비활성화 설정 추가

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +113 to +114
SPRING_JPA_HIBERNATE_DDL_AUTO: create
SPRING_FLYWAY_ENABLED: false
Copy link

Copilot AI Jan 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In GitHub Actions YAML, unquoted false is parsed as a boolean by the YAML parser. While Actions typically coerces env values to strings, quoting here avoids any edge-case coercion issues and makes it explicit that the process env var should be the string "false" (same for other non-obvious strings). Consider setting SPRING_FLYWAY_ENABLED: 'false' (and optionally quoting create too for consistency).

Suggested change
SPRING_JPA_HIBERNATE_DDL_AUTO: create
SPRING_FLYWAY_ENABLED: false
SPRING_JPA_HIBERNATE_DDL_AUTO: 'create'
SPRING_FLYWAY_ENABLED: 'false'

Copilot uses AI. Check for mistakes.
@Hwan0518 Hwan0518 deleted the feature/ci/test-schema-setup branch January 30, 2026 10:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant