We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f4286 commit 2428f5eCopy full SHA for 2428f5e
.github/workflows/ci.yml
@@ -45,16 +45,6 @@ jobs:
45
java-version: '17'
46
distribution: 'temurin'
47
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
-
58
# CI
59
- name: Grant Execute Permission For Gradlew
60
run: chmod +x gradlew
@@ -70,6 +60,9 @@ jobs:
70
echo "${{ secrets.PROPERTIES_TEST }}" > ./application-test.properties
71
61
shell: bash
72
62
63
+ - name: Show dependencies
64
+ run: ./gradlew dependencies --configuration runtimeClasspath
65
+
73
66
# 테스트를 제외한 프로젝트 빌드
74
67
- name: Build With Gradle
75
68
run: ./gradlew clean build -x test --no-build-cache
0 commit comments