Skip to content

Commit 90282cf

Browse files
committed
Enable debug logging to get problem on JDK 15
1 parent 1e3aa97 commit 90282cf

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/gradle.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,21 @@ jobs:
2424
uses: actions/setup-java@v1
2525
with:
2626
java-version: ${{ matrix.java }}
27+
- name: Cache Gradle
28+
uses: actions/cache@v2
29+
with:
30+
path: |
31+
~/.gradle/caches
32+
~/.gradle/wrapper
33+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
34+
restore-keys: |
35+
${{ runner.os }}-gradle-
2736
- name: Make gradlew executable (non-Windows only)
2837
if: matrix.os != 'windows-latest'
2938
run: chmod +x ./gradlew
3039
- name: Gradle Check (non-Windows)
3140
if: matrix.os != 'windows-latest'
32-
run: ./gradlew --info check
41+
run: ./gradlew --info --stacktrace check
3342
- name: Gradle Check (Windows)
3443
if: matrix.os == 'windows-latest'
3544
shell: cmd

0 commit comments

Comments
 (0)