We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 048ed79 commit 1c084ccCopy full SHA for 1c084cc
1 file changed
.github/workflows/test.yml
@@ -97,6 +97,18 @@ jobs:
97
98
- name: Test
99
run: gradle test && gradle jacocoTestReport
100
+ continue-on-error: true
101
+
102
+ - name: Show test report if tests fail
103
+ if: failure()
104
+ run: cat build/reports/tests/test/index.html
105
106
+ - name: Upload Test Report
107
+ if: always()
108
+ uses: actions/upload-artifact@v3
109
+ with:
110
+ name: test-report
111
+ path: build/reports/tests/test/index.html
112
113
- name: Codecov
114
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}
0 commit comments