Skip to content

Commit f690da3

Browse files
authored
refactor: remove useless extra github cache action (#105)
* Remove Gradle build cache step from workflow Removed caching for Gradle build artifacts in CI workflow. * Delete .github/workflows/test-build.yml * Remove Gradle build cache step from workflow Removed caching step for Gradle build cache in CI workflow.
1 parent 430acba commit f690da3

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,7 @@ jobs:
1515
uses: gradle/actions/setup-gradle@v5
1616
with:
1717
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
18-
- name: Cache Gradle Build Cache
19-
uses: actions/cache@v5
20-
with:
21-
path: |
22-
~/.gradle/caches
23-
~/.gradle/wrapper
24-
.gradle
25-
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle.properties') }}
26-
restore-keys: |
27-
${{ runner.os }}-gradle-
2818
- name: Build with Gradle
2919
run: ./gradlew build
3020
- name: Test with Gradle
31-
run: ./gradlew test
21+
run: ./gradlew test

0 commit comments

Comments
 (0)