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 b2f76a2 commit 3c85559Copy full SHA for 3c85559
.github/workflows/gradle.yml
@@ -27,7 +27,7 @@ jobs:
27
- name: List Files
28
run: find -maxdepth 1 -type d
29
- name: Execute tests
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)
+ run: ./gradlew clean check || ( exitcode=$?; find build/tests -name '*.log' -type f | while read f; do echo -e "\033[4m$f\033[0m"; cat $f; done && exit $exitcode; )
31
- name: Bundle Artifacts
32
run: ./gradlew bundle
33
- name: Upload Artifacts
0 commit comments