Skip to content

Commit b2f4286

Browse files
author
SMA/유정민
committed
[deploy] 캐시 clean 작업 및 미사용 필드 재삭제
1 parent f11a0eb commit b2f4286

File tree

2 files changed

+11
-4
lines changed
  • .github/workflows
  • src/main/java/donmani/donmani_server/user/entity

2 files changed

+11
-4
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ jobs:
4545
java-version: '17'
4646
distribution: 'temurin'
4747

48+
- name: Gradle Caching (Clear cache)
49+
uses: actions/cache@v3
50+
with:
51+
path: |
52+
~/.gradle/caches
53+
~/.gradle/wrapper
54+
key: ${{ runner.os }}-gradle-clearcache-${{ github.run_id }}
55+
restore-keys: |
56+
${{ runner.os }}-gradle-
57+
4858
# CI
4959
- name: Grant Execute Permission For Gradlew
5060
run: chmod +x gradlew
@@ -65,7 +75,7 @@ jobs:
6575
run: ./gradlew clean build -x test --no-build-cache
6676

6777
- name: Build With Test
68-
run: ./gradlew test --no-build-cach
78+
run: ./gradlew test --no-build-cache
6979

7080
# 테스트 결과 파일 생성
7181
- name: Publish Unit Test Results

src/main/java/donmani/donmani_server/user/entity/User.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ public class User {
4646

4747
private boolean isNoticeEnable;
4848

49-
// 미사용
50-
private boolean isRewardChecked;
51-
5249
/*
5350
- 2025.05.25
5451
- feedback 양방향 연관 관계 추가

0 commit comments

Comments
 (0)