Skip to content

Commit 1c084cc

Browse files
committed
Update test.yml
1 parent 048ed79 commit 1c084cc

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,18 @@ jobs:
9797

9898
- name: Test
9999
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
100112

101113
- name: Codecov
102114
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)