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 1e3aa97 commit 90282cfCopy full SHA for 90282cf
.github/workflows/gradle.yml
@@ -24,12 +24,21 @@ jobs:
24
uses: actions/setup-java@v1
25
with:
26
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-
36
- name: Make gradlew executable (non-Windows only)
37
if: matrix.os != 'windows-latest'
38
run: chmod +x ./gradlew
39
- name: Gradle Check (non-Windows)
40
- run: ./gradlew --info check
41
+ run: ./gradlew --info --stacktrace check
42
- name: Gradle Check (Windows)
43
if: matrix.os == 'windows-latest'
44
shell: cmd
0 commit comments