We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e10b5e5 commit 2a94915Copy full SHA for 2a94915
.github/workflows/pr-ci.yml
@@ -26,6 +26,7 @@ jobs:
26
uses: gradle/actions/setup-gradle@v4
27
with:
28
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
29
+ dependency-graph: generate-and-submit
30
31
- name: Cache Gradle packages
32
uses: actions/cache@v4
@@ -35,10 +36,10 @@ jobs:
35
36
restore-keys: ${{ runner.os }}-gradle
37
38
- name: Check spotless
- 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
40
41
- name: Run Tests
- run: ./gradlew test --no-configuration-cache
42
+ run: ./gradlew test --no-configuration-cache --refresh-dependencies
43
44
45
notify:
0 commit comments