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 efc55b9 commit b2f76a2Copy full SHA for b2f76a2
.github/workflows/gradle.yml
@@ -24,8 +24,10 @@ jobs:
24
# restore-keys: ${{ matrix.os }}-gradle-jdk${{ matrix.jdk }}
25
- name: Grant execute permission for gradlew
26
run: chmod +x gradlew
27
+ - name: List Files
28
+ run: find -maxdepth 1 -type d
29
- name: Execute tests
- run: ./gradlew check || (exitcode=$?; find build/tests -name '*.log' -type f | while read f; do echo -e "\033[4m$f\033[0m"; cat $f; done && return $exitcode)
30
+ run: ./gradlew check --debug || (exitcode=$?; find build/tests -name '*.log' -type f | while read f; do echo -e "\033[4m$f\033[0m"; cat $f; done && return $exitcode)
31
- name: Bundle Artifacts
32
run: ./gradlew bundle
33
- name: Upload Artifacts
0 commit comments