We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e114e0e commit 738d3d1Copy full SHA for 738d3d1
1 file changed
.github/workflows/deploy-staging-auto.yml
@@ -64,7 +64,23 @@ jobs:
64
exit 1
65
66
- name: Run tests
67
- run: ./gradlew test --stacktrace --info -Duser.timezone=Asia/Seoul
+ run: ./gradlew test --stacktrace --info \
68
+ -Duser.timezone=Asia/Seoul \
69
+ -Dspring.profiles.active=test \
70
+ -Dlogging.level.org.hibernate.SQL=DEBUG \
71
+ -Dlogging.level.org.hibernate.orm.jdbc.bind=TRACE \
72
+ -Dlogging.level.org.springframework.transaction=TRACE
73
+
74
+ - name: Upload test reports
75
+ if: always()
76
+ uses: actions/upload-artifact@v4
77
+ with:
78
+ name: test-reports
79
+ path: |
80
+ build/reports/tests/test
81
+ build/test-results/test
82
+ build/reports/problems
83
+ retention-days: 7
84
85
build_and_deploy:
86
runs-on: ubuntu-latest
0 commit comments