Skip to content
Merged
Changes from 1 commit
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
10 changes: 8 additions & 2 deletions .github/workflows/Backend-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ jobs:
restore-keys: |
gradle-${{ runner.os }}-

- name: Pre-pull pgvector image
run: docker pull pgvector/pgvector:pg16

- name: Grant Docker perms
run: docker info

# Gradle 실행 권한 부여
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand All @@ -87,10 +93,10 @@ jobs:
# Gradle 빌드 및 테스트
# 빌드 / 테스트 분리
- name: Execute Build
run: ./gradlew clean build -x test --warning-mode=all
run: ./gradlew clean build -x test --warning-mode=all --no-daemon

- name: Execute Tests
run: ./gradlew test --info
run: ./gradlew test --info --no-daemon

# 테스트 실행 결과 로깅 Action
- name: Generate JUnit Test Report
Expand Down