Skip to content

Commit

Permalink
Print Gradle stacktrace and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
xSAVIKx committed Mar 3, 2024
1 parent 17e671b commit 9c42294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run build with Gradle wrapper
run: ./gradlew build
run: ./gradlew build --stacktrace --warning-mode all
- name: Upload build reports
uses: actions/upload-artifact@v3
if: always()
with:
name: build-reports
path: build/reports/
- name: Run checks
run: ./gradlew check jacocoTestReport
run: ./gradlew check test integrationTest jacocoTestReport --stacktrace --warning-mode all

0 comments on commit 9c42294

Please sign in to comment.