Skip to content

Commit 715723e

Browse files
committed
Update test workflow with Gradle caching and --no-daemon flag
- Add cache: 'gradle' to setup-java step for faster builds - Add --no-daemon flag to prevent daemon processes in CI
1 parent 22e2ccf commit 715723e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
with:
1616
java-version: '17'
1717
distribution: 'temurin'
18+
cache: 'gradle'
1819
- name: Grant execute permission for gradlew
1920
run: chmod +x ./gradlew
2021
- name: Run tests
21-
run: ./gradlew test
22+
run: ./gradlew test --no-daemon

0 commit comments

Comments
 (0)