Skip to content

Commit 2a94915

Browse files
committed
fix: .github/workflows/pr-ci.yml에 dependency-graph 항목 추가 및 의존성
갱신 옵션 적용
1 parent e10b5e5 commit 2a94915

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pr-ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
uses: gradle/actions/setup-gradle@v4
2727
with:
2828
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
29+
dependency-graph: generate-and-submit
2930

3031
- name: Cache Gradle packages
3132
uses: actions/cache@v4
@@ -35,10 +36,10 @@ jobs:
3536
restore-keys: ${{ runner.os }}-gradle
3637

3738
- name: Check spotless
38-
run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --no-configuration-cache
39+
run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --no-configuration-cache --refresh-dependencies
3940

4041
- name: Run Tests
41-
run: ./gradlew test --no-configuration-cache
42+
run: ./gradlew test --no-configuration-cache --refresh-dependencies
4243

4344

4445
notify:

0 commit comments

Comments
 (0)