Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ jobs:
# build 이전에 test 먼저 실행
- name: Run tests
run: ./gradlew test
env:
SPRING_JPA_HIBERNATE_DDL_AUTO: create
SPRING_FLYWAY_ENABLED: false
Comment on lines +113 to +114
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.

# Gradle 빌드 액션을 이용해서 프로젝트 빌드 -> 테스트를 먼저 실행했기 때문에 테스트는 제외
- name: Build with Gradle
Expand Down