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 5031460 commit 482082cCopy full SHA for 482082c
.github/workflows/test.yml
@@ -44,4 +44,14 @@ jobs:
44
./gradlew \
45
-PGITHUB_PUBLISH_TOKEN=${{ secrets.GITHUB_TOKEN }} \
46
${{ matrix.targets }}
47
- shell: bash
+ shell: bash
48
+
49
+ # Credit: https://github.com/gradle/actions/issues/76#issuecomment-2007584323
50
+ - name: Upload reports on failure
51
+ if: failure()
52
+ uses: actions/upload-artifact@v4
53
+ with:
54
+ name: report-for-${{ matrix.os }}
55
+ path: |
56
+ **/build/reports/
57
+ **/build/test-results/
0 commit comments